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
2e2942a3
Commit
2e2942a3
authored
19 years ago
by
Adrian Burri
Browse files
Options
Downloads
Patches
Plain Diff
Use traits class instead of direct access
[[Imported from SVN: r3711]]
parent
c3f5d457
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fem/discfuncarray.hh
+6
-6
6 additions, 6 deletions
fem/discfuncarray.hh
with
6 additions
and
6 deletions
fem/discfuncarray.hh
+
6
−
6
View file @
2e2942a3
...
...
@@ -55,13 +55,13 @@ namespace Dune {
typedef
DiscFuncArray
<
DiscreteFunctionSpaceType
>
DiscreteFunctionType
;
//! Type of the range field
typedef
typename
DiscreteFunctionSpaceType
::
RangeFieldType
RangeFieldType
;
typedef
typename
DiscreteFunctionSpaceType
::
Traits
::
RangeFieldType
RangeFieldType
;
/** \brief For ISTL-compatibility */
typedef
FieldVector
<
RangeFieldType
,
1
>
block_type
;
//! Type of the grid
typedef
typename
DiscreteFunctionSpaceType
::
GridType
GridType
;
typedef
typename
DiscreteFunctionSpaceType
::
Traits
::
GridType
GridType
;
//! the MyType
typedef
DiscFuncArray
<
DiscreteFunctionSpaceType
>
DiscreteFunctionType
;
...
...
@@ -240,10 +240,10 @@ namespace Dune {
typedef
DiscFuncArray
<
DiscreteFunctionSpaceType
>
DiscFuncType
;
enum
{
dimrange
=
DiscreteFunctionSpaceType
::
DimRange
};
typedef
typename
DiscreteFunctionSpaceType
::
DomainType
DomainType
;
typedef
typename
DiscreteFunctionSpaceType
::
RangeType
RangeType
;
typedef
typename
DiscreteFunctionSpaceType
::
RangeFieldType
RangeFieldType
;
typedef
typename
DiscreteFunctionSpaceType
::
JacobianRangeType
JacobianRangeType
;
typedef
typename
DiscreteFunctionSpaceType
::
Traits
::
DomainType
DomainType
;
typedef
typename
DiscreteFunctionSpaceType
::
Traits
::
RangeType
RangeType
;
typedef
typename
DiscreteFunctionSpaceType
::
Traits
::
RangeFieldType
RangeFieldType
;
typedef
typename
DiscreteFunctionSpaceType
::
Traits
::
JacobianRangeType
JacobianRangeType
;
friend
class
DiscFuncArray
<
DiscreteFunctionSpaceType
>
;
friend
class
LocalFunctionWrapper
<
DiscFuncArray
<
DiscreteFunctionSpaceType
>
>
;
...
...
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