mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-01 03:00:13 -04:00
16 lines
329 B
C#
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);
|
|
}
|
|
}
|