| 1483 | |
| 1484 | |
| 1485 | ElementalLoad * |
| 1486 | Domain::removeElementalLoad(int tag, int loadPattern) |
| 1487 | { |
| 1488 | // remove the object from the container |
| 1489 | LoadPattern *theLoadPattern = this->getLoadPattern(loadPattern); |
| 1490 | |
| 1491 | // if not there return 0 |
| 1492 | if (theLoadPattern == 0) |
| 1493 | return 0; |
| 1494 | |
| 1495 | return theLoadPattern->removeElementalLoad(tag); |
| 1496 | } |
| 1497 | |
| 1498 | |
| 1499 | SP_Constraint * |
no test coverage detected