Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Koch
dune-common
Commits
917b93c2
Commit
917b93c2
authored
19 years ago
by
Adrian Burri
Browse files
Options
Downloads
Patches
Plain Diff
Added comment
[[Imported from SVN: r3339]]
parent
4a3c9bb9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fem/space/combinedspace.hh
+8
-3
8 additions, 3 deletions
fem/space/combinedspace.hh
with
8 additions
and
3 deletions
fem/space/combinedspace.hh
+
8
−
3
View file @
917b93c2
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment