From d895aab6d549bf3f55617961758fe7fb2b64d87e Mon Sep 17 00:00:00 2001
From: Claus-Justus Heine <Claus-Justus.Heine@IANS.Uni-Stuttgart.DE>
Date: Thu, 26 Mar 2009 01:14:12 +0000
Subject: [PATCH] Comment the global_refine() change.

---
 howto-port-ellipt.txt | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/howto-port-ellipt.txt b/howto-port-ellipt.txt
index 14ac6d7..7dfde21 100644
--- a/howto-port-ellipt.txt
+++ b/howto-port-ellipt.txt
@@ -224,6 +224,11 @@ get_adapt_stat(mesh->dim, "ellipt", "adapt", 2,
                NULL /* ADAPT_STAT storage area, optional */);
         The first parameter, the mesh-dimension, is new. 
 
+global_refine(mesh, n_refine * mesh->dim, FILL_NOTHING);
+        The last parameter is new, specifying optional additional
+        fill-flags. The old behaviour is recovered by passing
+        FILL_NOTHING.
+
 ################################################################################
 #
 # v1.2 ellipt.c ported to the most recent ALBERTA follows below. By
@@ -758,7 +763,7 @@ int main(int argc, char **argv)
 		 NULL /* refine_leaf_data() */,
 		 NULL /* coarsen_leaf_data() */);
 
-  global_refine(mesh, n_refine * mesh->dim);
+  global_refine(mesh, n_refine * mesh->dim, FILL_NOTHING);
  
   if (do_graphics) {
     MSG("Displaying the mesh.\n");
-- 
GitLab