Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 56d38a2

Browse files
Updates to ExprTk
1 parent a5723e1 commit 56d38a2

23 files changed

+27
-27
lines changed

‎exprtk/Makefile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# **************************************************************
33
# * C++ Mathematical Expression Toolkit Library *
44
# * *
5-
# * Author: Arash Partow (1999-2019) *
5+
# * Author: Arash Partow (1999-2020) *
66
# * URL: http://www.partow.net/programming/exprtk/index.html *
77
# * *
88
# * Copyright notice: *

‎exprtk/exprtk.hpp‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
******************************************************************
33
* C++ Mathematical Expression Toolkit Library *
44
* *
5-
* Author: Arash Partow (1999-2019) *
5+
* Author: Arash Partow (1999-2020) *
66
* URL: http://www.partow.net/programming/exprtk/index.html *
77
* *
88
* Copyright notice: *
@@ -14390,7 +14390,7 @@ namespace exprtk
1439014390

1439114391
inline T3 t3() const
1439214392
{
14393-
return t2_;
14393+
return t3_;
1439414394
}
1439514395

1439614396
std::string type_id() const
@@ -38927,9 +38927,9 @@ namespace exprtk
3892738927
namespace information
3892838928
{
3892938929
static const char* library = "Mathematical Expression Toolkit";
38930-
static const char* version = "2.71828182845904523536028747135266249775724709369995957"
38931-
"4966967627724076630353547594571382178525166427427466391";
38932-
static const char* date = "20190818";
38930+
static const char* version = "2.7182818284590452353602874713526624977572470936999595749"
38931+
"669676277240766303535475945713821785251664274274663919320";
38932+
static const char* date = "20200101";
3893338933

3893438934
static inline std::string data()
3893538935
{

‎exprtk/exprtk_benchmark.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* ExprTk vs Native Benchmarks *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_01.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 1 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_02.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 2 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_03.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 3 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_04.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 4 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_05.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 5 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_06.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 6 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

‎exprtk/exprtk_simple_example_07.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* C++ Mathematical Expression Toolkit Library *
44
* *
55
* Simple Example 7 *
6-
* Author: Arash Partow (1999-2019) *
6+
* Author: Arash Partow (1999-2020) *
77
* URL: http://www.partow.net/programming/exprtk/index.html *
88
* *
99
* Copyright notice: *

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /