From d80b16052190cef470073494b618c7528f07af70 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Tue, 13 Dec 2016 10:30:02 +0000 Subject: [PATCH] Math interpreter: added infinity as a constant --- lib/MathInterpreter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/MathInterpreter.cpp b/lib/MathInterpreter.cpp index 88997b2..192afe2 100644 --- a/lib/MathInterpreter.cpp +++ b/lib/MathInterpreter.cpp @@ -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)