| 1910 | |
| 1911 | |
| 1912 | int |
| 1913 | opsPartition(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1914 | { |
| 1915 | #ifdef _PARALLEL_PROCESSING |
| 1916 | int eleTag; |
| 1917 | if (argc == 2) { |
| 1918 | if (Tcl_GetInt(interp, argv[1], &eleTag) != TCL_OK) { |
| 1919 | ; |
| 1920 | } |
| 1921 | } |
| 1922 | partitionModel(eleTag); |
| 1923 | #endif |
| 1924 | return TCL_OK; |
| 1925 | } |
| 1926 | |
| 1927 | // |
| 1928 | // command invoked to build the model, i.e. to invoke analyze() |
nothing calls this directly
no test coverage detected