// $Id$
// Version: $Name$
//
-// Copyright (C) 2005 by the deal.II authors and Christian Kamm
+// Copyright (C) 2005, 2006 by the deal.II authors and Christian Kamm
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// any sanity tests? Trias derived from same coarse grid?
// build mappings between the cells
- InterGridMap<DoFHandler, dim> source2target, target2source;
+ InterGridMap<DoFHandler<dim> > source2target, target2source;
source2target.make_mapping(source_dof, target_dof);
target2source.make_mapping(target_dof, source_dof);
// now compute intergrid
// constraints
- InterGridMap<DoFHandler,dim> intergrid_map;
+ InterGridMap<DoFHandler<dim> > intergrid_map;
intergrid_map.make_mapping (dof_1, dof_2);
ConstraintMatrix intergrid_constraints;
dof_2.distribute_dofs (fe_2);
// create some mapping
- InterGridMap<DoFHandler,dim> intergrid_map_1;
- InterGridMap<DoFHandler,dim> intergrid_map_2;
+ InterGridMap<DoFHandler<dim> > intergrid_map_1;
+ InterGridMap<DoFHandler<dim> > intergrid_map_2;
intergrid_map_1.make_mapping (dof_1, dof_2);
intergrid_map_2.make_mapping (dof_2, dof_1);