]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Replace set_manifold by reset_manifold
authorLuca Heltai <luca.heltai@sissa.it>
Sat, 14 Apr 2018 14:56:21 +0000 (14:56 +0000)
committerLuca Heltai <luca.heltai@sissa.it>
Sat, 14 Apr 2018 14:56:21 +0000 (14:56 +0000)
14 files changed:
examples/step-1/step-1.cc
examples/step-49/step-49.cc
tests/codim_one/bem.cc
tests/codim_one/data_out_03.cc
tests/codim_one/mapping_fe_field_01.cc
tests/codim_one/transform_01.cc
tests/grid/grid_output_input.cc
tests/grid/grid_test.cc
tests/manifold/manifold_id_07.cc
tests/mappings/mapping_real_to_unit_02.cc
tests/mpi/fe_field_function_02.cc
tests/mpi/p4est_2d_constraintmatrix_03.cc
tests/mpi/p4est_2d_constraintmatrix_04.cc
tests/mpi/p4est_3d_constraintmatrix_03.cc

index 249a07e3930f09a75185e0c3734190d7854ece65..6ec5b280973f56f8f0db9a91d4e00bfcd5f26737 100644 (file)
@@ -257,7 +257,7 @@ void second_grid ()
   // follows. Note that this sets the manifold object used for part "0" of the
   // domain back to a default object, over which the triangulation has full
   // control.
-  triangulation.set_manifold (0);
+  triangulation.reset_manifold(0);
   // An alternative to doing so, and one that is frequently more convenient,
   // would have been to declare the manifold object before the triangulation
   // object. In that case, the triangulation would have let lose of the
index 35f41ab85da9d0444040d7058cb6d6f5b1c0879e..3aecc7bb00dfe9726672b3ae6ee301a8240d0a55 100644 (file)
@@ -204,7 +204,7 @@ void grid_3 ()
   // object is destroyed first in this function since it was declared after
   // the triangulation).
   print_mesh_info (triangulation, "grid-3.eps");
-  triangulation.set_manifold (1);
+  triangulation.reset_manifold(1);
 }
 
 // There is one snag to doing things as shown above: If one moves the nodes on
index 6616030fb4ec2c67a0665fdec90e4bb9a5e6b213..f3d95e137d0eb0ff33b881f963418d8f3d908de5 100644 (file)
@@ -145,7 +145,7 @@ BEM<spacedim>::run()
           solve();
           output_results();
 
-          tria.set_manifold(1);
+          tria.reset_manifold(1);
 
           for (unsigned int i=0; i<dof_handler_q.n_dofs(); ++i)
             global_error +=
index 8147a8fe3f2d8356ea08ff54c7178bb347a3b816..f773652920be5bced760f49e8917c3b25f13d321 100644 (file)
@@ -122,7 +122,7 @@ int main ()
 
 
   dh_test.clear();
-  tria.set_manifold(0);
+  tria.reset_manifold(0);
 
   return 0;
 }
index 703b1d222163f6a7c8abaa900aaea29f38d6fb45..0cd534c431caa5df3b03747e4982945a17aa4ee0 100644 (file)
@@ -115,7 +115,7 @@ void test(const unsigned int refs,
   data_out_euler.write_vtk(deallog.get_file_stream());
 
 
-  triangulation.set_manifold(0);
+  triangulation.reset_manifold(0);
 }
 
 int main ()
index 95c794edf72a6da07ae197fed8f46567454a674a..2cbdcfe15f2c17cfe74c74b99737c5cc6cef4f69 100644 (file)
@@ -72,7 +72,7 @@ int main ()
 
   GridGenerator::extract_boundary_mesh (volume_mesh, triangulation,
                                         boundary_ids);
-  triangulation.set_manifold (0);
+  triangulation.reset_manifold(0);
   GridTools::transform (&warp<3>, triangulation);
 
   deallog << "Surface mesh has " << triangulation.n_active_cells()
index 45602abe15b4247d37221ef547a49fd5f3959f17..d1aad878aa951184c7d19780ccf54f9bf8ed8a30 100644 (file)
@@ -47,7 +47,7 @@ void test(std::ostream &out)
   deallog << "Writing refined from constructor" << std::endl;
   go.write_ucd(tr, out);
 
-  tr.set_manifold(1);
+  tr.reset_manifold(1);
   tr.clear();
 
   GridIn<dim> gi;
@@ -70,7 +70,7 @@ void test(std::ostream &out)
     grid_file.close();
   }
 
-  tr.set_manifold(1);
+  tr.reset_manifold(1);
   tr.clear();
 }
 
index ee86071797aabe99e01a8c2086968a94edf8cce0..19f76c9d64590d227a06d2859b95598c0babcb5a 100644 (file)
@@ -239,7 +239,7 @@ void test (const int test_case)
           tria.execute_coarsening_and_refinement();
         };
 
-      tria.set_manifold (1);
+      tria.reset_manifold(1);
       break;
     }
     }
index fe016ff57aafe7f118a7ebad99fccc941d058040..7d71bf56f873584aed9fbf255dd7e026794d3df2 100644 (file)
@@ -57,7 +57,7 @@ void test(unsigned int ref=1)
 
   GridOut gridout;
   gridout.write_msh(tria, deallog.get_file_stream());
-  tria.set_manifold(1);
+  tria.reset_manifold(1);
 }
 
 int main ()
index 4faea407d41823afd2f344bd3a24b163ef34ed16..cac694727595b650bd9f3d85c367a706718932e1 100644 (file)
@@ -69,7 +69,7 @@ void test2()
   points[95]=p;
   fe_function.value_list (points, m); // <<<< this fails at point[95] but only if the other points are filled in?!
 
-  triangulation.set_manifold (0);
+  triangulation.reset_manifold(0);
 
   deallog << "OK" << std::endl;
 }
index 350c5f9e551e0b013c2fc834c33993060b4c5652..bd6213917d27bc3c6a2b0b6dffce632460106065 100644 (file)
@@ -155,7 +155,7 @@ void test()
   if (Utilities::MPI::this_mpi_process (MPI_COMM_WORLD) == 0)
     deallog << "OK" << std::endl;
 
-  tr.set_manifold(99);
+  tr.reset_manifold(99);
 }
 
 
index 063c26f9adb1702432cfcd3d1132ed8c2ba31103..697e929481bb7ecc33bf14ec235c9038799abeeb 100644 (file)
@@ -135,8 +135,8 @@ void test()
   if (myid==0)
     x_dub.print(deallog.get_file_stream(), 8, true, false);
 
-  tr.set_manifold (0);
-  tr.set_manifold (1);
+  tr.reset_manifold(0);
+  tr.reset_manifold(1);
 }
 
 
index 212b829e12b90f42b758566af546c45ae3fed2e7..c5f3838fdbecf174325ffdf0483a3bc83fba21b3 100644 (file)
@@ -307,8 +307,8 @@ void test()
   std::ofstream output (filename.c_str());
   data_out.write_deal_II_intermediate (output);
 
-  tr.set_manifold (0);
-  tr.set_manifold (1);
+  tr.reset_manifold(0);
+  tr.reset_manifold(1);
   if (Utilities::MPI::this_mpi_process (MPI_COMM_WORLD) == 0)
     deallog << "OK" << std::endl;
 }
index bcda49ea8cef5439c98058a9f57b2b8b2e80333b..ccb4c8a3f68b52514755f688b724772ebac022bb 100644 (file)
@@ -302,8 +302,8 @@ void test()
   std::ofstream output (filename.c_str());
   data_out.write_vtu (output);
 
-  tr.set_manifold (0);
-  tr.set_manifold (1);
+  tr.reset_manifold(0);
+  tr.reset_manifold(1);
 
   if (Utilities::MPI::this_mpi_process (MPI_COMM_WORLD) == 0)
     deallog << "OK" << std::endl;

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.