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

[localfunctions.interface] update CRTP handling

parent a3f50ffc
No related branches found
No related tags found
No related merge requests found
......@@ -8,9 +8,10 @@
#include <vector>
#include <dune/common/bartonnackmanifcheck.hh>
#include <dune/common/dynvector.hh>
#include <dune/stuff/common/crtp.hh>
#include <dune/gdt/basefunctionset/interface.hh>
namespace Dune {
......@@ -19,15 +20,15 @@ namespace LocalFunctional {
template <class Traits>
class Codim0Interface
class Codim0Interface : public Stuff::CRTPInterface<Codim0Interface<Traits>, Traits>
{
public:
typedef typename Traits::derived_type derived_type;
size_t numTmpObjectsRequired() const
{
CHECK_INTERFACE_IMPLEMENTATION(asImp().numTmpObjectsRequired());
return asImp().numTmpObjectsRequired();
CHECK_CRTP(this->as_imp().numTmpObjectsRequired());
return this->as_imp().numTmpObjectsRequired();
}
/**
......@@ -43,30 +44,21 @@ public:
void apply(const BaseFunctionSetInterface<T, D, d, R, r, rC>& testBase, Dune::DynamicVector<R>& ret,
std::vector<Dune::DynamicVector<R>>& tmpLocalVectors) const
{
CHECK_AND_CALL_INTERFACE_IMPLEMENTATION(asImp().apply(testBase, ret, tmpLocalVectors));
}
derived_type& asImp()
{
return static_cast<derived_type&>(*this);
}
const derived_type& asImp() const
{
return static_cast<const derived_type&>(*this);
CHECK_AND_CALL_CRTP(this->as_imp().apply(testBase, ret, tmpLocalVectors));
}
}; // class Codim0Interface
template <class Traits>
class Codim1Interface
class Codim1Interface : public Stuff::CRTPInterface<Codim1Interface<Traits>, Traits>
{
public:
typedef typename Traits::derived_type derived_type;
size_t numTmpObjectsRequired() const
{
CHECK_INTERFACE_IMPLEMENTATION(asImp().numTmpObjectsRequired());
return asImp().numTmpObjectsRequired();
CHECK_CRTP(this->as_imp().numTmpObjectsRequired());
return this->as_imp().numTmpObjectsRequired();
}
/**
......@@ -83,17 +75,7 @@ public:
void apply(const BaseFunctionSetInterface<T, D, d, R, r, rC>& testBase, const IntersectionType& intersection,
Dune::DynamicVector<R>& ret, std::vector<Dune::DynamicVector<R>>& tmpLocalVectors) const
{
CHECK_AND_CALL_INTERFACE_IMPLEMENTATION(asImp().apply(testBase, intersection, ret, tmpLocalVectors));
}
derived_type& asImp()
{
return static_cast<derived_type&>(*this);
}
const derived_type& asImp() const
{
return static_cast<const derived_type&>(*this);
CHECK_AND_CALL_CR(this->as_imp().apply(testBase, intersection, ret, tmpLocalVectors));
}
}; // class Codim1Interface
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment