| 6229 | } |
| 6230 | |
| 6231 | int |
| 6232 | getCTestIter(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 6233 | { |
| 6234 | if (theTest != 0) { |
| 6235 | int res = theTest->getNumTests(); |
| 6236 | |
| 6237 | char buffer [10]; |
| 6238 | sprintf(buffer,"%d",res); |
| 6239 | Tcl_AppendResult(interp, buffer, NULL); |
| 6240 | |
| 6241 | return TCL_OK; |
| 6242 | } |
| 6243 | |
| 6244 | opserr << "ERROR testIter - no convergence test!\n"; |
| 6245 | return TCL_ERROR; |
| 6246 | } |
| 6247 | |
| 6248 | int |
| 6249 | nodeDisp(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
nothing calls this directly
no test coverage detected