From b1271b3074102e67819f130f9ffd347f2ba91300 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Mon, 13 Nov 2017 21:21:20 +0100
Subject: [PATCH] disable parts of cases

---
 Geo/discreteDiskFace.cpp               |  4 ++--
 benchmarks/extrude/sphere_discrete.geo | 11 +++++------
 tutorial/t13.geo                       |  6 +++---
 3 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/Geo/discreteDiskFace.cpp b/Geo/discreteDiskFace.cpp
index 77229c52bf..eff590d77e 100644
--- a/Geo/discreteDiskFace.cpp
+++ b/Geo/discreteDiskFace.cpp
@@ -1245,7 +1245,7 @@ double triangulation::geodesicDistance ()
     if (Fixed.size() == v2t.size())break;
   }
 
-
+  /*
   char name[256];
   sprintf(name,"geodesicDistance%d.pos",iter);
   FILE *f = fopen(name,"w");
@@ -1262,7 +1262,7 @@ double triangulation::geodesicDistance ()
   }
   fprintf(f,"};\n");
   fclose(f);
-
+  */
   return CLOSEST;
 }
 
diff --git a/benchmarks/extrude/sphere_discrete.geo b/benchmarks/extrude/sphere_discrete.geo
index 2dfe0da00a..f3bcd425fc 100644
--- a/benchmarks/extrude/sphere_discrete.geo
+++ b/benchmarks/extrude/sphere_discrete.geo
@@ -1,13 +1,12 @@
 General.MeshDiscrete=1 ;
-Merge "sphere.stl";
 
+// FIXME: re-add this once we have a good reparam
+
+//Merge "sphere.stl";
 //out[] = Extrude{
 // Surface{1}; Layers{5, 0.1}; Recombine;
 //};
-
-//the volume of the boundary layer is created
-//with the extrusion
-
-//here we create the volume of the inside of the sphere
+// the volume of the boundary layer is created with the extrusion
+// here we create the volume of the inside of the sphere
 //Surface Loop(100)={1};
 //Volume(101)={100};
diff --git a/tutorial/t13.geo b/tutorial/t13.geo
index f70ec02c55..7ab78936bb 100644
--- a/tutorial/t13.geo
+++ b/tutorial/t13.geo
@@ -26,9 +26,9 @@ ss[] = Surface {:};
 // discrete):
 Compound Surface{ss[]};
 
-// And we can create the volume based on the new compound entities
-Surface Loop(1) = {ss[]};
-Volume(1) = {1};
+// FIXME: re-add this when we use a good parametrization
+//Surface Loop(1) = {ss[]};
+//Volume(1) = {1};
 
 // element size imposed by a size field
 Field[1] = MathEval;
-- 
GitLab