| 254 | } |
| 255 | |
| 256 | static int Tcl_ops_algorithm(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 257 | wrapper->resetCommandLine(argc, 1, argv); |
| 258 | |
| 259 | if (OPS_Algorithm() < 0) return TCL_ERROR; |
| 260 | |
| 261 | return TCL_OK; |
| 262 | } |
| 263 | |
| 264 | static int Tcl_ops_analysis(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 265 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected