1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-04-05 09:35:54 +01:00

Math interpreter: added infinity as a constant

This commit is contained in:
Antonin Portelli 2016-12-13 10:30:02 +00:00
parent c6bc8c9af2
commit d80b160521

View File

@ -690,6 +690,7 @@ void MathInterpreter::compile(RunContext &context)
if (root_)
{
context.addVariable("pi", Math::pi);
context.addVariable("inf", HUGE_VAL);
ADD_STDMATH_FUNCS(context);
root_->compile(program_, context);
for (unsigned int i = 0; i < program_.size(); ++i)