Re: [Olena-patches] 2000: Fix tests/util/graph.

Roland Levillain wrote:
https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog from Roland Levillain <roland@lrde.epita.fr>
Fix tests/util/graph.
* tests/util/graph.cc: Catch up with the new interface of mln::util::graph<V, E>. s/add_node/add_vertex/.
graph.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
Index: tests/util/graph.cc --- tests/util/graph.cc (revision 1999) +++ tests/util/graph.cc (working copy) @@ -37,12 +37,12 @@
util::graph<void> g;
- g.add_node (); // 0 - g.add_node (); // 1 - g.add_node (); // 2 - g.add_node (); // 3 - g.add_node (); // 4 - g.add_node (); // 5 + g.add_vertex (); // 0 + g.add_vertex (); // 1 + g.add_vertex (); // 2 + g.add_vertex (); // 3 + g.add_vertex (); // 4 + g.add_vertex (); // 5 g.add_edge (0, 1); g.add_edge (0, 2); g.add_edge (3, 4);
Faire un pauvre patch de renommage juste pour avoir le 2000 ème patch c'est petit ... -- Vivien Delmon - ZiXiS - CSI 2009

Le 6 juin 08 à 18:25, Vivien Delmon a écrit :
Roland Levillain wrote:
https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog from Roland Levillain <roland@lrde.epita.fr>
Fix tests/util/graph.
* tests/util/graph.cc: Catch up with the new interface of mln::util::graph<V, E>. s/add_node/add_vertex/.
[...]
Faire un pauvre patch de renommage juste pour avoir le 2000 ème patch c'est petit ...
Merci de poster les commentaires personnels ailleurs (dans olena-core à la limite) !
-- Roland Levillain - LRDE/EPITA - A2SI/ESIEE/IGM/UMLV-Paris Est Laboratoire de Recherche et de Développement de l'EPITA (LRDE) 14-16, rue Voltaire - 94276 Le Kremlin-Bicêtre Cedex Tél. : 01 53 14 59 45 - Fax : 01 53 14 59 22 - www.lrde.epita.fr
participants (2)
-
Roland Levillain
-
Vivien Delmon