| 246 | } |
| 247 | |
| 248 | static int Tcl_ops_integrator(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 249 | wrapper->resetCommandLine(argc, 1, argv); |
| 250 | |
| 251 | if (OPS_Integrator() < 0) return TCL_ERROR; |
| 252 | |
| 253 | return TCL_OK; |
| 254 | } |
| 255 | |
| 256 | static int Tcl_ops_algorithm(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 257 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected