// ---------------------------------------------------------------------
// $Id: 2d_refinement_01.cc 31349 2013-10-20 19:07:06Z maier $
//
-// Copyright (C) 2008 - 2013 by the deal.II authors
+// Copyright (C) 2008 - 2014 by the deal.II authors
//
// This file is part of the deal.II library.
//
#include <fstream>
#include <deal.II/fe/fe_q.h>
-template <int dim, int spacedim=dim>
+template <int dim>
void write_vtk (const parallel::distributed::Triangulation<dim,spacedim> &tria,
const char *filename)
{
GridGenerator::torus(tr, 1, 0.2);
tr.refine_global();
-
+
tr.begin_active()->set_refine_flag();
(++(tr.begin_active()))->set_refine_flag();
MPILogInitAll init;
deallog.push("2-3");
- test<2,3>(deallog.get_file_stream());
+ test<2,3>(deallog.get_file_stream());
deallog.pop();
}