Skip to content
Snippets Groups Projects
Commit 148fb2df authored by Tobias Leibner's avatar Tobias Leibner
Browse files

some minor fixes to fix headercheck

parent c99613db
No related branches found
No related tags found
No related merge requests found
......@@ -154,7 +154,8 @@ class ProductBaseFunctionSet
typename std::tuple_element<0, std::tuple<BaseFunctionSetImps...>>::type::
DomainFieldType,
std::tuple_element<0, std::tuple<BaseFunctionSetImps...>>::type::dimDomain,
std::tuple_element<0, std::tuple<BaseFunctionSetImps...>>::type::RangeFieldType,
typename std::tuple_element<0, std::tuple<BaseFunctionSetImps...>>::type::
RangeFieldType,
internal::SumDimRange<BaseFunctionSetImps...>::dimRange, 1>
{
typedef ProductBaseFunctionSet<BaseFunctionSetImps...> ThisType;
......
......@@ -144,12 +144,12 @@ public:
// These methods are required by the ProductMapperInterface
size_t numDofs(const size_t factor_index, const EntityType& entity) const
{
return DSC::DynamicTupleGetter<0>::numDofs(mappers_, factor_index, entity);
return internal::DynamicTupleGetter<0>::numDofs(mappers_, factor_index, entity);
}
size_t maxNumDofs(const size_t factor_index) const
{
return DSC::DynamicTupleGetter<0>::maxNumDofs(mappers_, factor_index);
return internal::DynamicTupleGetter<0>::maxNumDofs(mappers_, factor_index);
}
void globalIndices(const size_t factor_index, const EntityType& entity, Dune::DynamicVector<size_t>& ret) const
......@@ -167,7 +167,7 @@ public:
for (size_t ii = 0; ii < factor_index; ++ii)
first_global_index_of_factor += size(ii);
return first_global_index_of_factor
+ DSC::DynamicTupleGetter<0>::mapToGlobal(mappers_, factor_index, entity, local_index_in_factor);
+ internal::DynamicTupleGetter<0>::mapToGlobal(mappers_, factor_index, entity, local_index_in_factor);
}
size_t mapToLocal(const size_t factor_index, const EntityType& entity, const size_t& local_index_in_factor) const
......@@ -185,7 +185,7 @@ public:
size_t size(const size_t factor_index) const
{
return DSC::DynamicTupleGetter<0>::size(mappers_, factor_index);
return internal::DynamicTupleGetter<0>::size(mappers_, factor_index);
}
size_t size() const
......
......@@ -234,7 +234,8 @@ public:
assert(DSC::FloatCmp::ge(scale_factor_max_, 1.0));
assert(A_.rows() == A_.cols() && "A has to be a square matrix");
assert(Gamma_.rows() == Gamma_.cols() && "Gamma has to be a square matrix");
assert(Gamma_.rows() == A_.rows() && "Sizes of A and Gamma have to match!") assert(b_1.size() == A_.rows());
assert(Gamma_.rows() == A_.rows() && "Sizes of A and Gamma have to match!");
assert(b_1.size() == A_.rows());
assert(b_2.size() == A_.rows());
assert(c_.size() == A_.rows());
#ifndef NDEBUG
......
......@@ -79,6 +79,7 @@ public:
{
}
DefaultProduct(const ThisType& other) = default;
DefaultProduct(ThisType&& source) = default;
ThisType& operator=(const ThisType& other) = delete;
......
......@@ -14,6 +14,8 @@
#include <dune/gdt/basefunctionset/default/product.hh>
#include <dune/gdt/mapper/default/product.hh>
#include <dune/gdt/spaces/cg.hh>
#include <dune/gdt/spaces/parallel.hh>
#include "interface.hh"
......@@ -181,8 +183,6 @@ private:
}; // class DefaultProductSpace
#include <dune/gdt/spaces/cg.hh>
template <class GridViewImp, int polynomialOrder, size_t domainDim, class RangeFieldImp>
class TaylorHoodSpace : public ProductSpace<CG::PdelabBased<GridViewImp, polynomialOrder, RangeFieldImp, domainDim, 1>,
CG::PdelabBased<GridViewImp, polynomialOrder - 1, RangeFieldImp, 1, 1>>
......
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