--- Begin Message ---
------------------------------------------------------------
revno: 5334
committer: Garth N. Wells <gnw20@xxxxxxxxx>
branch nick: dolfin-all
timestamp: Mon 2010-11-29 12:32:27 +0000
message:
Turn on renumbering for multi-core bench. Seg-faults for 2 processes.
modified:
bench/fem/multicore/cpp/main.cpp
--
lp:dolfin
https://code.launchpad.net/~dolfin-core/dolfin/main
Your team DOLFIN Core Team is subscribed to branch lp:dolfin.
To unsubscribe from this branch go to https://code.launchpad.net/~dolfin-core/dolfin/main/+edit-subscription
=== modified file 'bench/fem/multicore/cpp/main.cpp'
--- bench/fem/multicore/cpp/main.cpp 2010-11-27 23:44:11 +0000
+++ bench/fem/multicore/cpp/main.cpp 2010-11-29 12:32:27 +0000
@@ -12,6 +12,7 @@
#include <dolfin.h>
#include <dolfin/fem/AssemblerTools.h>
+#include <dolfin/mesh/MeshRenumbering.h>
#include "Poisson.h"
#include "NavierStokes.h"
@@ -106,6 +107,7 @@
// Create mesh
UnitCube mesh(SIZE, SIZE, SIZE);
mesh.color("vertex");
+ MeshRenumbering::renumber_by_color(mesh);
//mesh.init(1);
// Test cases
--- End Message ---