| 115 | } |
| 116 | |
| 117 | OptimizationAlgorithmFactory::CreatorList::const_iterator OptimizationAlgorithmFactory::findSolver(const std::string& name) const |
| 118 | { |
| 119 | for (CreatorList::const_iterator it = _creator.begin(); it != _creator.end(); ++it) { |
| 120 | const OptimizationAlgorithmProperty& sp = (*it)->property(); |
| 121 | if (sp.name == name) |
| 122 | return it; |
| 123 | } |
| 124 | return _creator.end(); |
| 125 | } |
| 126 | |
| 127 | OptimizationAlgorithmFactory::CreatorList::iterator OptimizationAlgorithmFactory::findSolver(const std::string& name) |
| 128 | { |
nothing calls this directly
no outgoing calls
no test coverage detected