| 1317 | |
| 1318 | |
| 1319 | ElementalLoad * |
| 1320 | Domain::removeElementalLoad(int tag, int loadPattern) |
| 1321 | { |
| 1322 | // remove the object from the container |
| 1323 | LoadPattern *theLoadPattern = this->getLoadPattern(loadPattern); |
| 1324 | |
| 1325 | // if not there return 0 |
| 1326 | if (theLoadPattern == 0) |
| 1327 | return 0; |
| 1328 | |
| 1329 | return theLoadPattern->removeElementalLoad(tag); |
| 1330 | } |
| 1331 | |
| 1332 | |
| 1333 | SP_Constraint * |
nothing calls this directly
no test coverage detected