| 198 | } |
| 199 | |
| 200 | void |
| 201 | OptimizationDomain::Print(OPS_Stream &s, int flag) |
| 202 | { |
| 203 | s << "Current Optimization Domain Information\n"; |
| 204 | |
| 205 | s << theDesignVariablesPtr->getNumComponents() << " random variables\n"; |
| 206 | if (flag == 1) |
| 207 | theDesignVariablesPtr->Print(s, flag); |
| 208 | |
| 209 | |
| 210 | } |
nothing calls this directly
no test coverage detected