Get the Solution object for an adjacent phase by index
| 100 | |
| 101 | //! Get the Solution object for an adjacent phase by index |
| 102 | shared_ptr<Solution> adjacent(size_t i) { |
| 103 | return m_adjacent.at(i); |
| 104 | } |
| 105 | |
| 106 | //! Get the Solution object for an adjacent phase by name |
| 107 | shared_ptr<Solution> adjacent(const string& name) { |
no outgoing calls