equal
deleted
inserted
replaced
216 const InverseMap inverse() const { |
216 const InverseMap inverse() const { |
217 return invMap; |
217 return invMap; |
218 } |
218 } |
219 |
219 |
220 private: |
220 private: |
221 vector<Item> invMap; |
221 std::vector<Item> invMap; |
222 }; |
222 }; |
223 |
223 |
224 /// Provides an immutable and unique id for each item in the graph. |
224 /// Provides an immutable and unique id for each item in the graph. |
225 |
225 |
226 /// The IdMap class provides an unique and immutable mapping for each item |
226 /// The IdMap class provides an unique and immutable mapping for each item |