Skip to content
Snippets Groups Projects
Commit d895aab6 authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Comment the global_refine() change.
parent e0613369
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment