Files
CoolProp/wrappers/SMath/coolprop_wrapper/IFunction.cs
Davide Carpi b371b75aaf SMath Wrapper refactoring (#1365)
* Full update to latest SS 0.98 APIs

- SS: switched to LowLevelEvaluationFast interface;
- SS: fixed compiler warnings for deprecated methods/properties;
- refactoring;

* refactoring

- removed not useful try/catch from unit manager;
- refactoring of not used methods;

* Fix for SMath bug SS-2414

* minor changes

* Added folder for Test files

* Added test file

IF97 test file from CoolProp/CoolProp issue #1249

* changed filename

* added script for batch testing

* Review of dynamic assistant tootltip

* New layout for README.md

* Updated README.md

* Updated README.md

* Fixed combined emphasis in README.md
2016-12-02 10:41:19 -05:00

15 lines
328 B
C#

namespace coolprop_wrapper
{
interface IFunction
{
SMath.Manager.Term Info { get; }
SMath.Manager.TermInfo GetTermInfo(string lang);
bool TryEvaluateExpression(
SMath.Manager.Entry value,
SMath.Math.Store context,
out SMath.Manager.Entry result);
}
}