From: bangerth Date: Sun, 15 Jun 2014 14:15:34 +0000 (+0000) Subject: Patch by Michal Wichrowski: Instantiate some functions for codimension 1. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=865ec721ca4f41d469f7b888856cb1572d85a225;p=dealii-svn.git Patch by Michal Wichrowski: Instantiate some functions for codimension 1. git-svn-id: https://svn.dealii.org/trunk@33044 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/distributed/grid_refinement.inst.in b/deal.II/source/distributed/grid_refinement.inst.in index 556d53ea75..0b6eb6e1a3 100644 --- a/deal.II/source/distributed/grid_refinement.inst.in +++ b/deal.II/source/distributed/grid_refinement.inst.in @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2010 - 2013 by the deal.II authors +// Copyright (C) 2010 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -45,4 +45,34 @@ namespace parallel \} \} #endif + + +#if deal_II_dimension == 3 + +namespace parallel +\{ + namespace distributed + \{ + namespace GridRefinement + \{ + template + void + refine_and_coarsen_fixed_number,deal_II_dimension> + (parallel::distributed::Triangulation &, + const dealii::Vector &, + const double, + const double); + + template + void + refine_and_coarsen_fixed_fraction,deal_II_dimension> + (parallel::distributed::Triangulation &, + const dealii::Vector &, + const double, + const double); + \} + \} +\} + +#endif }