| 83 | |
| 84 | |
| 85 | int |
| 86 | opsPartition(ClientData clientData, Tcl_Interp *interp, int argc, |
| 87 | TCL_Char ** const argv) |
| 88 | { |
| 89 | PartitionRuntime& part = *static_cast<PartitionRuntime*>(clientData); |
| 90 | |
| 91 | int eleTag; |
| 92 | if (argc == 2) { |
| 93 | if (Tcl_GetInt(interp, argv[1], &eleTag) != TCL_OK) { |
| 94 | ; |
| 95 | } |
| 96 | } |
| 97 | partitionModel(part, eleTag); |
| 98 | return TCL_OK; |
| 99 | } |
| 100 | |
| 101 | static int |
| 102 | partitionModel(PartitionRuntime& part, int eleTag) |
nothing calls this directly
no test coverage detected