Author: logari81
Date: Sat May 23 12:50:56 2015
New Revision: 5000

URL: http://svn.gna.org/viewcvs/getfem?rev=5000&view=rev
Log:
fix bug in cuthill_mckee_on_convexes

Modified:
    trunk/getfem/src/bgeot_mesh_structure.cc

Modified: trunk/getfem/src/bgeot_mesh_structure.cc
URL: 
http://svn.gna.org/viewcvs/getfem/trunk/getfem/src/bgeot_mesh_structure.cc?rev=5000&r1=4999&r2=5000&view=diff
==============================================================================
--- trunk/getfem/src/bgeot_mesh_structure.cc    (original)
+++ trunk/getfem/src/bgeot_mesh_structure.cc    Sat May 23 12:50:56 2015
@@ -404,8 +404,8 @@
     }
 
     /* do the cuthill mckee */
-    connectivity[cv] = size_type(-1);
     while (cv != size_type(-1)) {
+      connectivity[cv] = size_type(-1);
       cmk.push_back(cv);
       size_type nbp = ms.nb_points_of_convex(cv);
 


_______________________________________________
Getfem-commits mailing list
[email protected]
https://mail.gna.org/listinfo/getfem-commits

Reply via email to