|
template<typename T , typename Scalar > |
auto | at_most (T const &expr, const Scalar value) PROXSUITE_DEDUCE_RET((expr.array()< value).select(expr |
| Returns the part of the expression which is lower than value.
|
|
template<typename T , typename Scalar > |
auto | at_least (T const &expr, const Scalar value) PROXSUITE_DEDUCE_RET((expr.array() > value).select(expr |
| Returns the part of the expression which is greater than value.
|
|
template<typename T > |
auto | positive_part (T const &expr) PROXSUITE_DEDUCE_RET((expr.array() > 0).select(expr |
| Returns the positive part of an expression.
|
|
template<typename T > |
auto | negative_part (T const &expr) PROXSUITE_DEDUCE_RET((expr.array()< 0).select(expr |
| Returns the negative part of an expression.
|
|
template<typename Condition , typename T , typename Scalar > |
auto | select (Condition const &condition, T const &expr, const Scalar value) PROXSUITE_DEDUCE_RET((condition).select(expr |
| Select the components of the expression if the condition is fullfiled. Otherwise, set the component to value.
|
|
std::string | printVersion (const std::string &delimiter=".") |
|
bool | checkVersionAtLeast (signed int major_version, signed int minor_version, signed int patch_version) |
|