| 855 | } |
| 856 | |
| 857 | int |
| 858 | TclModelBuilder::addYS_EvolutionModel(YS_Evolution &theModel) |
| 859 | { |
| 860 | bool result = theYS_EvolutionModels->addComponent(&theModel); |
| 861 | if (result == true) |
| 862 | return 0; |
| 863 | else { |
| 864 | opserr << "TclModelBuilder::addYS_EvolutionModel() - failed to add model " << theModel; |
| 865 | return -1; |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | |
| 870 | YS_Evolution * |
no test coverage detected