minor doc

This commit is contained in:
Laurent Perron
2025-03-06 15:14:30 +01:00
parent 5924162efe
commit 9eb02f465a

View File

@@ -78,6 +78,9 @@
// Note on iteration efficiency: When re-indexing the arcs it is not possible to
// have both the outgoing arcs and the incoming ones form a consecutive range.
//
// Iterators are invalidated by any operation that changes the graph (e.g.
// `AddArc()`).
//
// It is however possible to do so for the outgoing arcs and the opposite
// incoming arcs. It is why the OutgoingOrOppositeIncomingArcs() and
// OutgoingArcs() iterations are more efficient than the IncomingArcs() one.