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
0379f402
Commit
0379f402
authored
19 years ago
by
Adrian Burri
Browse files
Options
Downloads
Patches
Plain Diff
Reduced number of template parameter for DofManager
[[Imported from SVN: r2744]]
parent
3bfd75b0
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/dofmanager.hh
+26
-21
26 additions, 21 deletions
fem/dofmanager.hh
with
26 additions
and
21 deletions
fem/dofmanager.hh
+
26
−
21
View file @
0379f402
...
...
@@ -14,6 +14,7 @@
#include
<dune/common/stdstreams.hh>
#include
<dune/common/exceptions.hh>
#include
<dune/common/genericiterator.hh>
#include
<dune/common/interfaces.hh>
#include
<dune/fem/common/dofmapperinterface.hh>
...
...
@@ -26,8 +27,7 @@
namespace
Dune
{
// forward declaration
template
<
class
GridType
,
class
DataCollectorImp
=
DataCollectorInterface
<
GridType
>
>
template
<
class
GridType
>
class
DofManager
;
template
<
class
DofManagerImp
>
class
DofManagerFactory
;
...
...
@@ -679,7 +679,7 @@ namespace Dune {
created. The default value for the IndexSet is the DefaultIndexSet class
which is mostly a wrapper for the grid indices.
*/
template
<
class
GridImp
,
class
DataCollectorImp
>
template
<
class
GridImp
>
class
DofManager
{
public:
...
...
@@ -687,10 +687,15 @@ namespace Dune {
typedef
GridImp
GridType
;
private:
typedef
DofManager
<
GridType
,
DataCollectorImp
>
MyType
;
typedef
DofManager
<
GridType
>
MyType
;
friend
class
DofManagerFactory
<
MyType
>
;
public:
typedef
DataCollectorImp
DataCollectorType
;
typedef
typename
GridObjectStreamOrDefault
<
GridType
,
DummyObjectStream
>::
ObjectStreamType
ObjectStreamType
;
typedef
DataCollector
<
GridType
,
DataCollectorInterface
<
GridType
,
ObjectStreamType
>
>
DataCollectorType
;
// all things for one discrete function are put together in a MemObject
typedef
MemPointerType
MemoryPointerType
;
...
...
@@ -971,8 +976,8 @@ namespace Dune {
//
//***************************************************************************
template
<
class
GridType
,
class
DataCollectorType
>
inline
DofManager
<
GridType
,
DataCollectorType
>::~
DofManager
()
template
<
class
GridType
>
inline
DofManager
<
GridType
>::~
DofManager
()
{
if
(
memList_
.
size
()
>
0
)
{
...
...
@@ -999,9 +1004,9 @@ namespace Dune {
}
template
<
class
GridType
,
class
DataCollectorType
>
template
<
class
GridType
>
template
<
class
IndexSetType
>
inline
void
DofManager
<
GridType
,
DataCollectorType
>::
inline
void
DofManager
<
GridType
>::
addIndexSet
(
const
GridType
&
grid
,
IndexSetType
&
iset
)
{
if
(
&
grid_
!=
&
grid
)
...
...
@@ -1038,9 +1043,9 @@ namespace Dune {
return
;
}
template
<
class
GridType
,
class
DataCollectorType
>
template
<
class
GridType
>
template
<
class
IndexSetType
>
inline
bool
DofManager
<
GridType
,
DataCollectorType
>::
inline
bool
DofManager
<
GridType
>::
checkIndexSetExists
(
const
IndexSetType
&
iset
)
const
{
const
IndexSetInterface
&
set
=
iset
;
...
...
@@ -1057,11 +1062,11 @@ namespace Dune {
}
template
<
class
GridType
,
class
DataCollectorType
>
template
<
class
GridType
>
template
<
class
DofStorageType
,
class
MapperType
>
//inline MemObject<MapperType,DofStorageType> &
std
::
pair
<
MemObjectInterface
*
,
DofStorageType
*>
DofManager
<
GridType
,
DataCollectorType
>::
DofManager
<
GridType
>::
addDofSet
(
const
DofStorageType
*
ds
,
const
MapperType
&
mapper
,
std
::
string
name
)
{
assert
(
name
.
c_str
()
!=
0
);
...
...
@@ -1083,22 +1088,22 @@ namespace Dune {
}
template
<
class
GridType
,
class
DataCollectorType
>
inline
bool
DofManager
<
GridType
,
DataCollectorType
>::
template
<
class
GridType
>
inline
bool
DofManager
<
GridType
>::
write
(
const
GrapeIOFileFormatType
ftype
,
const
std
::
string
filename
,
int
timestep
)
{
assert
(
ftype
==
xdr
);
return
write_xdr
(
filename
,
timestep
);
}
template
<
class
GridType
,
class
DataCollectorType
>
inline
bool
DofManager
<
GridType
,
DataCollectorType
>::
template
<
class
GridType
>
inline
bool
DofManager
<
GridType
>::
read
(
const
std
::
string
filename
,
int
timestep
)
{
return
read_xdr
(
filename
,
timestep
);
}
template
<
class
GridType
,
class
DataCollectorType
>
inline
bool
DofManager
<
GridType
,
DataCollectorType
>::
template
<
class
GridType
>
inline
bool
DofManager
<
GridType
>::
write_xdr
(
const
std
::
string
filename
,
int
timestep
)
{
//assert( filename );
...
...
@@ -1119,8 +1124,8 @@ namespace Dune {
return
true
;
}
template
<
class
GridType
,
class
DataCollectorType
>
inline
bool
DofManager
<
GridType
,
DataCollectorType
>::
template
<
class
GridType
>
inline
bool
DofManager
<
GridType
>::
read_xdr
(
const
std
::
string
filename
,
int
timestep
)
{
//assert( filename );
...
...
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