| 165 | } |
| 166 | |
| 167 | int objective_function::get_statistics_num_samples(execution_mode mode) const |
| 168 | { |
| 169 | if (m_statistics.count(mode) == 0) { |
| 170 | return 0; |
| 171 | } |
| 172 | else { |
| 173 | return m_statistics.at(mode).get_num_samples(); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | std::vector<ViewingLayerPtr> objective_function::get_layer_pointers() const |
| 178 | { |
nothing calls this directly
no test coverage detected