lemon/johnson.h
changeset 1950 a1a6f5b788bd
parent 1916 e7d4eb908e87
child 1953 d4f411003580
equal deleted inserted replaced
12:65e8ac305f5f 13:73ed8a9cf472
   606     /// The algorithm computes
   606     /// The algorithm computes
   607     /// - The shortest path tree for each node.
   607     /// - The shortest path tree for each node.
   608     /// - The distance between each node pairs.
   608     /// - The distance between each node pairs.
   609     ///
   609     ///
   610     /// \note d.run(s) is just a shortcut of the following code.
   610     /// \note d.run(s) is just a shortcut of the following code.
   611     /// \code
   611     ///\code
   612     ///  d.init();
   612     ///  d.init();
   613     ///  d.start();
   613     ///  d.start();
   614     /// \endcode
   614     ///\endcode
   615     void run() {
   615     void run() {
   616       init();
   616       init();
   617       start();
   617       start();
   618     }
   618     }
   619     
   619