Skip to content
Snippets Groups Projects
Commit ddecfc56 authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Fix the type used for the dune-vtk output format in rod3d

This has been changed to Dune::Vtk::FormatTypes::ASCII in the dune-vtk module
parent 615a4a1a
No related branches found
No related tags found
1 merge request!76Fix/pipeline
......@@ -238,7 +238,7 @@ int main (int argc, char *argv[]) try
#if HAVE_DUNE_VTK
using DataCollector = Vtk::LagrangeDataCollector<GridView,order>;
DataCollector dataCollector(gridView);
VtkUnstructuredGridWriter<GridView,DataCollector> vtkWriter(gridView, Vtk::ASCII);
VtkUnstructuredGridWriter<GridView,DataCollector> vtkWriter(gridView, Vtk::FormatTypes::ASCII);
// Make basis for R^3-valued data
using namespace Functions::BasisFactory;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment