| 1269 | } |
| 1270 | |
| 1271 | static int Tcl_ops_computeGradients(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1272 | { |
| 1273 | wrapper->resetCommandLine(argc, 1, argv); |
| 1274 | |
| 1275 | if (OPS_computeGradients() < 0) return TCL_ERROR; |
| 1276 | |
| 1277 | return TCL_OK; |
| 1278 | } |
| 1279 | |
| 1280 | static int Tcl_ops_sensitivityAlgorithm(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1281 | { |
nothing calls this directly
no test coverage detected