C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html

This commit is contained in:
Arash Partow
2014-11-03 21:36:41 +11:00
parent af8fd04155
commit d068f6e14b
4 changed files with 7 additions and 0 deletions

View File

@ -69,7 +69,9 @@ void fibonacci()
for (std::size_t i = 0; i < 40; ++i)
{
x = i;
T result = expression.value();
printf("fibonacci(%3d) = %10.0f\n",
static_cast<int>(i),
result);