Skip to content
Snippets Groups Projects
Commit 50869b56 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[operator.projections] renaming

parent 6f93a14a
No related branches found
No related tags found
No related merge requests found
......@@ -18,16 +18,17 @@
namespace Dune {
namespace GDT {
namespace Operator {
namespace ProjectionOperator {
template <class SourceImp, class RangeImp>
class DirichletProjection
class Dirichlet
{
static_assert(std::is_base_of<Stuff::LocalizableFunction, SourceImp>::value,
"SourceImp has to be derived from Stuff::LocalizableFunction");
static_assert(std::is_same<RangeImp, DiscreteFunctionDefault<ContinuousLagrangeSpace::FemWrapper<
typename RangeImp::SpaceType::GridPartType, 1,
typename RangeImp::SpaceType::GridPartType,
RangeImp::SpaceType::polOrder,
typename RangeImp::SpaceType::RangeFieldType, 1>,
typename RangeImp::VectorType>>::value,
"RangeImp has wrong type!");
......@@ -38,7 +39,7 @@ public:
typedef Stuff::GridboundaryInterface<typename RangeType::SpaceType::GridPartType::GridViewType> BoundaryInfoType;
DirichletProjection(const BoundaryInfoType& boundary_info)
Dirichlet(const BoundaryInfoType& boundary_info)
: boundary_info_(boundary_info)
{
}
......@@ -86,10 +87,10 @@ public:
private:
const BoundaryInfoType& boundary_info_;
}; // class DirichletProjection
}; // class Dirichlet
} // namespace Operator
} // namespace ProjectionOperator
} // namespace GDT
} // namespace Dune
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment