Triangulation<dim> tria;
GridGenerator::hyper_cube(tria, 0., 1.);
tria.refine_global (1);
- // tria.begin_active()->set_refine_flag();
- //tria.execute_coarsening_and_refinement ();
FE_Q<dim> fe1(1);
xdmf_entries.push_back
(data_out.create_xdmf_entry (data_filter, "out.h5", 0, MPI_COMM_WORLD));
- data_out.write_xdmf_file(xdmf_entries, "out.xdmf",
- MPI_COMM_WORLD);
+ data_out.write_xdmf_file (xdmf_entries, "out.xdmf", MPI_COMM_WORLD);
+
+ deallog << "ok" << std::endl;
+
- deallog <<"ok" << std::endl;
-
-
// Sadly hdf5 is binary and we can not use hd5dump because it might
// not be in the path. At least we can look at the xdmf:
if (0==Utilities::MPI::this_mpi_process (MPI_COMM_WORLD))
- cat_file("out.xdmf");
+ cat_file("out.xdmf");
}
try
{
test<2>();
-// test<3>();
return 0;
}
return 1;
};
}
-