Returns the index of an argument by name
| 504 | |
| 505 | /// Returns the index of an argument by name |
| 506 | size_t ProblemSpace::argument_index(char const *name) const { |
| 507 | return argument_index_map.at(name); |
| 508 | } |
| 509 | |
| 510 | /// Helper for recursively cloning |
| 511 | void ProblemSpace::clone_( |
no test coverage detected