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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Core Modules
dune-common
Commits
8670c3c2
Commit
8670c3c2
authored
19 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
some more cleanups
[[Imported from SVN: r4451]]
parent
a3bc3348
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
grid/alu3dgrid/alu3dinclude.hh
+26
-0
26 additions, 0 deletions
grid/alu3dgrid/alu3dinclude.hh
grid/alu3dgrid/grid.hh
+0
-27
0 additions, 27 deletions
grid/alu3dgrid/grid.hh
grid/alu3dgrid/iterator.hh
+1
-7
1 addition, 7 deletions
grid/alu3dgrid/iterator.hh
with
27 additions
and
34 deletions
grid/alu3dgrid/alu3dinclude.hh
+
26
−
0
View file @
8670c3c2
...
...
@@ -207,6 +207,32 @@ namespace Dune {
typedef
ALU3DSPACE
GitterType
::
Geometric
::
VertexGeo
ImplementationType
;
};
//! contains list of vertices of one level
//! needed for VertexLevelIterator
class
ALU3dGridVertexList
{
public:
// level vertex iterator list
typedef
std
::
vector
<
ALU3DSPACE
VertexType
*
>
VertexListType
;
typedef
VertexListType
::
iterator
IteratorType
;
ALU3dGridVertexList
()
:
up2Date_
(
false
)
{}
size_t
size
()
const
{
return
vertexList_
.
size
();
}
bool
up2Date
()
const
{
return
up2Date_
;
}
void
unsetUp2Date
()
{
up2Date_
=
false
;
}
// make grid walkthrough and calc global size
template
<
class
GridType
>
void
setupVxList
(
const
GridType
&
grid
,
int
level
);
IteratorType
begin
()
{
return
vertexList_
.
begin
();
}
IteratorType
end
()
{
return
vertexList_
.
end
();
}
private
:
bool
up2Date_
;
VertexListType
vertexList_
;
};
#ifdef _ALU3DGRID_PARALLEL_
static
int
__MyRank__
=
-
1
;
...
...
This diff is collapsed.
Click to expand it.
grid/alu3dgrid/grid.hh
+
0
−
27
View file @
8670c3c2
...
...
@@ -63,33 +63,6 @@ namespace Dune {
template
<
class
GridImp
,
int
codim
>
struct
ALU3dGridEntityFactory
;
//! contains list of vertices of one level
//! needed for VertexLevelIterator
class
ALU3dGridVertexList
{
public:
// level vertex iterator list
typedef
std
::
vector
<
ALU3DSPACE
VertexType
*
>
VertexListType
;
typedef
VertexListType
::
iterator
IteratorType
;
ALU3dGridVertexList
()
:
up2Date_
(
false
)
{}
size_t
size
()
const
{
return
vertexList_
.
size
();
}
bool
up2Date
()
const
{
return
up2Date_
;
}
void
unsetUp2Date
()
{
up2Date_
=
false
;
}
// make grid walkthrough and calc global size
template
<
class
GridType
>
void
setupVxList
(
const
GridType
&
grid
,
int
level
);
IteratorType
begin
()
{
return
vertexList_
.
begin
();
}
IteratorType
end
()
{
return
vertexList_
.
end
();
}
private
:
bool
up2Date_
;
VertexListType
vertexList_
;
};
//**********************************************************************
//
// --ALU3dGrid
...
...
This diff is collapsed.
Click to expand it.
grid/alu3dgrid/iterator.hh
+
1
−
7
View file @
8670c3c2
...
...
@@ -7,6 +7,7 @@
// Dune includes
#include
"../common/grid.hh"
#include
<dune/grid/common/intersectioniteratorwrapper.hh>
// Local includes
#include
"alu3dinclude.hh"
...
...
@@ -14,8 +15,6 @@
#include
"faceutility.hh"
#include
"myautoptr.hh"
// using directives
namespace
ALUGridSpace
{
//*************************************************************
// definition of original LeafIterators of ALUGrid
...
...
@@ -726,7 +725,6 @@ namespace Dune {
typedef
typename
GridImp
::
template
Codim
<
0
>
::
Entity
Entity
;
typedef
typename
GridImp
::
template
Codim
<
1
>
::
Geometry
Geometry
;
typedef
typename
GridImp
::
template
Codim
<
1
>
::
LocalGeometry
LocalGeometry
;
typedef
ALU3dGridMakeableEntity
<
0
,
dim
,
GridImp
>
EntityImp
;
typedef
ALU3dGridGeometry
<
dim
-
1
,
dimworld
,
GridImp
>
GeometryImp
;
typedef
MakeableInterfaceObject
<
Geometry
>
GeometryObject
;
...
...
@@ -912,8 +910,6 @@ namespace Dune {
typedef
typename
GridImp
::
template
Codim
<
cd
>
::
Entity
Entity
;
typedef
ALU3DSPACE
VertexListType
VertexListType
;
typedef
ALU3dGridMakeableEntity
<
cd
,
dim
,
GridImp
>
EntityImp
;
//! typedef of my type
typedef
ALU3dGridLevelIterator
<
cd
,
pitype
,
GridImp
>
ALU3dGridLevelIteratorType
;
...
...
@@ -970,7 +966,6 @@ namespace Dune {
public
:
typedef
typename
GridImp
::
template
Codim
<
cdim
>
::
Entity
Entity
;
typedef
ALU3dGridMakeableEntity
<
cdim
,
dim
,
GridImp
>
EntityImp
;
typedef
ALU3dGridLeafIterator
<
cdim
,
pitype
,
GridImp
>
ALU3dGridLeafIteratorType
;
...
...
@@ -1021,7 +1016,6 @@ namespace Dune {
public
:
typedef
typename
GridImp
::
template
Codim
<
0
>
::
Entity
Entity
;
typedef
typename
GridImp
::
ctype
ctype
;
typedef
ALU3dGridMakeableEntity
<
0
,
dim
,
GridImp
>
EntityImp
;
//! the normal Constructor
ALU3dGridHierarchicIterator
(
const
GridImp
&
grid
,
...
...
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