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

[discretefunctionspace.continuous.lagrange] uses stuff.la.container.pattern

parent aac057e8
No related branches found
No related tags found
No related merge requests found
#ifndef DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH #ifndef DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH
#define DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH #define DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH
// system
#include <map>
#include <set>
// dune-common
#include <dune/common/shared_ptr.hh> #include <dune/common/shared_ptr.hh>
// dune-fem includes
#include <dune/fem/space/lagrangespace.hh> #include <dune/fem/space/lagrangespace.hh>
// dune-detailed-discretizations includes #include <dune/stuff/la/container/pattern.hh>
#include <dune/detailed/discretizations/basefunctionset/continuous/lagrange.hh> #include <dune/detailed/discretizations/basefunctionset/continuous/lagrange.hh>
#include <dune/detailed/discretizations/mapper/continuous/lagrange.hh> #include <dune/detailed/discretizations/mapper/continuous/lagrange.hh>
...@@ -44,23 +39,23 @@ public: ...@@ -44,23 +39,23 @@ public:
typedef Dune::Detailed::Discretizations::BaseFunctionSet::Continuous::Lagrange<ThisType> BaseFunctionSetType; typedef Dune::Detailed::Discretizations::BaseFunctionSet::Continuous::Lagrange<ThisType> BaseFunctionSetType;
typedef typename FunctionSpaceType::DomainFieldType DomainFieldType; // typedef typename FunctionSpaceType::DomainFieldType DomainFieldType;
typedef typename FunctionSpaceType::DomainType DomainType; // typedef typename FunctionSpaceType::DomainType DomainType;
typedef typename FunctionSpaceType::RangeFieldType RangeFieldType; // typedef typename FunctionSpaceType::RangeFieldType RangeFieldType;
typedef typename FunctionSpaceType::RangeType RangeType; // typedef typename FunctionSpaceType::RangeType RangeType;
typedef typename FunctionSpaceType::JacobianRangeType JacobianRangeType; // typedef typename FunctionSpaceType::JacobianRangeType JacobianRangeType;
typedef typename FunctionSpaceType::HessianRangeType HessianRangeType; // typedef typename FunctionSpaceType::HessianRangeType HessianRangeType;
static const unsigned int dimDomain = FunctionSpaceType::dimDomain; static const unsigned int dimDomain = FunctionSpaceType::dimDomain;
static const unsigned int dimRange = FunctionSpaceType::dimRange; static const unsigned int dimRange = FunctionSpaceType::dimRange;
typedef std::map<unsigned int, std::set<unsigned int>> PatternType; typedef Dune::Stuff::LA::Container::Pattern::Default PatternType;
Lagrange(const GridPartType& gridPart) Lagrange(const GridPartType& gridPart)
: gridPart_(gridPart) : gridPart_(gridPart)
...@@ -99,7 +94,8 @@ public: ...@@ -99,7 +94,8 @@ public:
Dune::shared_ptr<PatternType> computeLocalPattern(const LocalGridPartType& localGridPart, Dune::shared_ptr<PatternType> computeLocalPattern(const LocalGridPartType& localGridPart,
const OtherDiscreteFunctionSpaceType& other) const const OtherDiscreteFunctionSpaceType& other) const
{ {
Dune::shared_ptr<PatternType> ret(new PatternType()); typedef typename PatternType::size_type size_type;
Dune::shared_ptr<PatternType> ret(new PatternType(mapper_.size()));
PatternType& pattern = *ret; PatternType& pattern = *ret;
// walk the grid part // walk the grid part
for (typename LocalGridPartType::template Codim<0>::IteratorType entityIt = localGridPart.template begin<0>(); for (typename LocalGridPartType::template Codim<0>::IteratorType entityIt = localGridPart.template begin<0>();
...@@ -107,11 +103,11 @@ public: ...@@ -107,11 +103,11 @@ public:
++entityIt) { ++entityIt) {
const typename LocalGridPartType::template Codim<0>::EntityType& entity = *entityIt; const typename LocalGridPartType::template Codim<0>::EntityType& entity = *entityIt;
for (unsigned int i = 0; i < baseFunctionSet().local(entity).size(); ++i) { for (unsigned int i = 0; i < baseFunctionSet().local(entity).size(); ++i) {
const unsigned int globalI = map().toGlobal(entity, i); const size_type globalI = map().toGlobal(entity, i);
std::set<unsigned int>& rowSet = pattern[globalI]; typename PatternType::ColumnsType& columns = pattern.columns(globalI);
for (unsigned int j = 0; j < other.baseFunctionSet().local(entity).size(); ++j) { for (unsigned int j = 0; j < other.baseFunctionSet().local(entity).size(); ++j) {
const unsigned int globalJ = other.map().toGlobal(entity, j); const size_type globalJ = other.map().toGlobal(entity, j);
rowSet.insert(globalJ); columns.insert(globalJ);
} }
} }
} // walk the grid part } // walk the grid part
...@@ -128,7 +124,8 @@ public: ...@@ -128,7 +124,8 @@ public:
Dune::shared_ptr<PatternType> computeCouplingPattern(const CouplingGridPartType& couplingGridPart, Dune::shared_ptr<PatternType> computeCouplingPattern(const CouplingGridPartType& couplingGridPart,
const OutsideDiscreteFunctionSpaceType& outerSpace) const const OutsideDiscreteFunctionSpaceType& outerSpace) const
{ {
Dune::shared_ptr<PatternType> ret(new PatternType()); typedef typename PatternType::size_type size_type;
Dune::shared_ptr<PatternType> ret(new PatternType(mapper_.size()));
PatternType& pattern = *ret; PatternType& pattern = *ret;
// walk the coupling grid part // walk the coupling grid part
for (typename CouplingGridPartType::template Codim<0>::IteratorType entityIt = couplingGridPart.template begin<0>(); for (typename CouplingGridPartType::template Codim<0>::IteratorType entityIt = couplingGridPart.template begin<0>();
...@@ -153,11 +150,11 @@ public: ...@@ -153,11 +150,11 @@ public:
outerSpace.baseFunctionSet().local(outsideNeighbor); outerSpace.baseFunctionSet().local(outsideNeighbor);
// compute pattern // compute pattern
for (unsigned int i = 0; i < ansatzBaseFunctionSet.size(); ++i) { for (unsigned int i = 0; i < ansatzBaseFunctionSet.size(); ++i) {
const unsigned int globalI = map().toGlobal(insideEntity, i); const size_type globalI = map().toGlobal(insideEntity, i);
std::set<unsigned int>& rowSet = pattern[globalI]; typename PatternType::ColumnsType& columns = pattern.columns(globalI);
for (unsigned int j = 0; j < testBaseFunctionSet.size(); ++j) { for (unsigned int j = 0; j < testBaseFunctionSet.size(); ++j) {
const unsigned int globalJ = outerSpace.map().toGlobal(outsideNeighbor, j); const size_type globalJ = outerSpace.map().toGlobal(outsideNeighbor, j);
rowSet.insert(globalJ); columns.insert(globalJ);
} }
} // compute pattern } // compute pattern
} // walk the neighbors } // walk the neighbors
......
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