Files
CoolProp/wrappers/SMath/coolprop_wrapper/IFunction.cs
Ian Bell 8f56fb7a0e Added SMath wrapper code
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2015-02-18 22:20:27 -05:00

16 lines
329 B
C#

namespace coolprop_wrapper
{
interface IFunction
{
SMath.Manager.Term Info { get; }
SMath.Manager.TermInfo GetTermInfo(string lang);
bool ExpressionEvaluation(
SMath.Manager.Term root,
SMath.Manager.Term[][] args,
ref SMath.Math.Store context,
ref SMath.Manager.Term[] result);
}
}