peterrum / dealii

The development repository for the deal.II finite element library.
https://www.dealii.org/
Other
1 stars 0 forks source link

Merge DoFHandler and hp::DoFHandler #3

Closed peterrum closed 4 years ago

peterrum commented 4 years ago

Problem description

Goal:

DoFHandler<dim, spacedim> dof_handler(true /*=is_hp_dof_handler*/);

For compability:

namespace hp
{
  template <int dim, int spacedim = dim>
  class DoFHandler : public dealii::DoFHandler<dim, spacedim>
 {
    DoFHandler() 
      : public dealii::DoFHandler<dim, spacedim>(true /*=is_hp_dof_handler*/) {}
  }
}

Features

Incompabilities

Path forward