Skip to content

Commit

Permalink
Fix broken pi() SymHop function
Browse files Browse the repository at this point in the history
  • Loading branch information
robbr48 committed Jan 24, 2024
1 parent 216b720 commit e0b4000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SymHop/src/SymHop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3758,7 +3758,7 @@ QString SymHop::getFunctionDerivative(const QString &key)
//! @brief Returns a list with supported functions for equation-based model generation
QStringList SymHop::getSupportedFunctionsList()
{
return QStringList() << "div" << "rem" << "mod" << "tan" << "cos" << "sin" << "atan" << "acos" << "asin" << "atan2" << "sinh" << "cosh" << "tanh" << "log" << "exp" << "sqrt" << "sign" << "abs" << "der" << "onPositive" << "onNegative" << "signedSquareL" << "limit" << "integer" << "floor" << "ceil" << "pow" << "min" << "max" << "nonZero" << "turbulentFlow" << "delay" << "equal" << "notEqual" << "greaterThan" << "smallerThan" << "greaterThanOrEqual" << "smallerThanOrEqual" << "r2d" << "d2r";
return QStringList() << "div" << "rem" << "mod" << "tan" << "cos" << "sin" << "atan" << "acos" << "asin" << "atan2" << "sinh" << "cosh" << "tanh" << "log" << "exp" << "sqrt" << "sign" << "abs" << "der" << "onPositive" << "onNegative" << "signedSquareL" << "limit" << "integer" << "floor" << "ceil" << "pow" << "min" << "max" << "nonZero" << "turbulentFlow" << "delay" << "equal" << "notEqual" << "greaterThan" << "smallerThan" << "greaterThanOrEqual" << "smallerThanOrEqual" << "r2d" << "d2r" << "pi";
}


Expand Down

0 comments on commit e0b4000

Please sign in to comment.