Changeset 313:64f8f7cc6168 in lemon for lemon/smart_graph.h
- Timestamp:
- 10/09/08 10:09:44 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/smart_graph.h
r280 r313 366 366 367 367 ///This constructor immediately makes a snapshot of the digraph. 368 ///\param _gThe digraph we make a snapshot of.368 ///\param graph The digraph we make a snapshot of. 369 369 Snapshot(SmartDigraph &graph) : _graph(&graph) { 370 370 node_num=_graph->nodes.size(); … … 378 378 ///This function can be called more than once. In case of a repeated 379 379 ///call, the previous snapshot gets lost. 380 ///\param _gThe digraph we make the snapshot of.380 ///\param graph The digraph we make the snapshot of. 381 381 void save(SmartDigraph &graph) 382 382 { … … 776 776 777 777 ///This constructor immediately makes a snapshot of the digraph. 778 ///\param g The digraph we make a snapshot of.778 ///\param graph The digraph we make a snapshot of. 779 779 Snapshot(SmartGraph &graph) { 780 780 graph.saveSnapshot(*this); … … 787 787 ///This function can be called more than once. In case of a repeated 788 788 ///call, the previous snapshot gets lost. 789 ///\param g The digraph we make the snapshot of.789 ///\param graph The digraph we make the snapshot of. 790 790 void save(SmartGraph &graph) 791 791 {
Note: See TracChangeset
for help on using the changeset viewer.