MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / setExpression

Method setExpression

SRC/reliability/domain/functionEvaluator/TclEvaluator.cpp:113–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111
112
113int
114TclEvaluator::setExpression(const char *passedExpression)
115{
116 if (theExpression != 0)
117 delete [] theExpression;
118
119 int exprLen = strlen(passedExpression);
120 theExpression = new char[exprLen+1];
121 strcpy(theExpression,passedExpression);
122
123 return 0;
124}
125
126
127int

Callers 7

computeGradientMethod · 0.45
computeGradientMethod · 0.45
analyzeMethod · 0.45
analyzeMethod · 0.45
findDesignPointMethod · 0.45
computeHessianMethod · 0.45
fireMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected