Skip to content
Snippets Groups Projects
Commit 917b93c2 authored by Adrian Burri's avatar Adrian Burri
Browse files

Added comment

[[Imported from SVN: r3339]]
parent 4a3c9bb9
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ namespace Dune {
class CombinedBaseFunctionSet;
//! Traits class for CombinedSpace
template <class DiscreteFunctionSpaceImp, int N, DofStoragePolicy policy>
template <class DiscreteFunctionSpaceImp, int N, DofStoragePolicy policy = PointBased>
struct CombinedSpaceTraits {
private:
typedef DiscreteFunctionSpaceImp ContainedDiscreteFunctionSpaceType;
......@@ -67,6 +67,7 @@ namespace Dune {
typedef typename FunctionSpaceType::JacobianRangeType JacobianRangeType;
typedef typename ContainedSpaceTraits::GridType GridType;
typedef typename ContainedSpaceTraits::IndexSetType IndexSetType;
typedef typename ContainedSpaceTraits::IteratorType IteratorType;
typedef DofConversionUtility<policy> DofConversionType;
......@@ -81,7 +82,7 @@ namespace Dune {
};
//! Class to combine N scalar spaces
template <class DiscreteFunctionSpaceImp, int N, DofStoragePolicy policy>
template <class DiscreteFunctionSpaceImp, int N, DofStoragePolicy policy = PointBased>
class CombinedSpace :
public DiscreteFunctionSpaceDefault<
CombinedSpaceTraits<DiscreteFunctionSpaceImp, N, policy>
......@@ -112,6 +113,7 @@ namespace Dune {
typedef typename Traits::MapperType MapperType;
typedef typename Traits::IteratorType IteratorType;
typedef typename Traits::GridType GridType;
typedef typename Traits::IndexSetType IndexSetType;
typedef typename Traits::DofConversionType DofConversionType;
......@@ -162,6 +164,8 @@ namespace Dune {
//! access to grid
const GridType& grid() const { return spc_.grid(); }
const IndexSetType& indexSet() const { return spc_.indexSet(); }
//! access to mapper
const MapperType& mapper() const { return mapper_; }
......@@ -258,6 +262,7 @@ namespace Dune {
int quadPoint, RangeType & phi ) const;
//- Additional methods
//! Number of distinct (scalar) base functions
int numContainedFunctions() const {
return baseFunctionSet_.numBaseFunctions();
}
......@@ -310,7 +315,7 @@ namespace Dune {
typedef CombinedSpaceTraits<
DiscreteFunctionSpaceImp, N, policy> SpaceTraits;
typedef DiscreteFunctionSpaceImp ContainedDiscreteFunctionSpaceType;
typedef typename DiscreteFunctionSpaceImp::MapperType ContainedMapperType;
typedef typename DiscreteFunctionSpaceImp::Traits::MapperType ContainedMapperType;
public:
//- Public methods
//! Constructor
......
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