tinyexpr icon indicating copy to clipboard operation
tinyexpr copied to clipboard

Extending `te_variable` functions

Open loumalouomega opened this issue 6 months ago • 0 comments

Adding:

    {"zIsEqual", IsEqual,               TE_FUNCTION2 | TE_FLAG_PURE, 0},
    {"zIsGreater", IsGreater,           TE_FUNCTION2 | TE_FLAG_PURE, 0},
    {"zIsGreaterEqual", IsGreaterEqual, TE_FUNCTION2 | TE_FLAG_PURE, 0},
    {"zIsLess", IsLess,                 TE_FUNCTION2 | TE_FLAG_PURE, 0},
    {"zIsLessEqual", IsLessEqual,       TE_FUNCTION2 | TE_FLAG_PURE, 0},

This bring the changes we have added to our project https://github.com/KratosMultiphysics/Kratos/

loumalouomega avatar Jun 04 '25 07:06 loumalouomega