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
9864284d
Commit
9864284d
authored
20 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
Added index for vertices. No compress for this index yet.
[[Imported from SVN: r685]]
parent
09f910d0
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
grid/common/leafindexset.hh
+57
-5
57 additions, 5 deletions
grid/common/leafindexset.hh
with
57 additions
and
5 deletions
grid/common/leafindexset.hh
+
57
−
5
View file @
9864284d
...
...
@@ -79,6 +79,46 @@ namespace Dune {
template
<
class
GridType
>
class
AdaptiveLeafIndexSet
:
public
DefaultGridIndexSetBase
<
GridType
>
{
// busines as usual
template
<
class
EntityType
,
int
enCodim
,
int
codim
>
struct
IndexWrapper
{
static
int
index
(
EntityType
&
en
,
const
IndexArray
<
int
>
&
leafIndex
,
int
num
)
{
// this index set works only for codim = 0 at the moment
assert
(
codim
==
0
);
// check if we have index for given entity
assert
(
leafIndex
[
en
.
global_index
()]
>=
0
);
return
leafIndex
[
en
.
global_index
()];
}
};
//! if codim > codim of entity use subIndex
template
<
class
EntityType
>
struct
IndexWrapper
<
EntityType
,
0
,
2
>
{
static
int
index
(
EntityType
&
en
,
const
IndexArray
<
int
>
&
leafIndex
,
int
num
)
{
return
en
.
template
subIndex
<
2
>
(
num
);
}
};
template
<
class
EntityType
>
struct
IndexWrapper
<
EntityType
,
0
,
3
>
{
static
int
index
(
EntityType
&
en
,
const
IndexArray
<
int
>
&
leafIndex
,
int
num
)
{
return
en
.
template
subIndex
<
3
>
(
num
);
}
};
//******************************************************************
// my type, to be revised
enum
{
myType
=
2
};
enum
INDEXSTATE
{
NEW
,
USED
,
UNUSED
};
// the mapping of the global to leaf index
...
...
@@ -105,6 +145,7 @@ namespace Dune {
// size of old index set
int
oldSize_
;
// true if all entities that we use are marked as USED
bool
marked_
;
public
:
...
...
@@ -241,13 +282,16 @@ namespace Dune {
template
<
int
codim
,
class
EntityType
>
int
index
(
EntityType
&
en
,
int
num
)
const
{
// this index set works only for codim = 0 at the moment
assert
(
codim
==
0
);
return
IndexWrapper
<
EntityType
,
EntityType
::
codimension
,
codim
>::
index
(
en
,
leafIndex_
,
num
);
/*
// this index set works only for codim = 0 at the moment
assert(codim == 0);
// check if we have index for given entity
assert
(
leafIndex_
[
en
.
global_index
()]
>=
0
);
// check if we have index for given entity
assert(leafIndex_[en.global_index()] >= 0);
return
leafIndex_
[
en
.
global_index
()];
return leafIndex_[en.global_index()];
*/
}
//! return size of grid entities per level and codim
...
...
@@ -461,6 +505,14 @@ namespace Dune {
// read/write from/to xdr stream
bool
processXdr
(
XDR
*
xdrs
)
{
int
type
=
myType
;
xdr_int
(
xdrs
,
&
type
);
if
(
type
!=
myType
)
{
std
::
cerr
<<
"
\n
ERROR: AdaptiveLeafIndexSet: wrong type choosen!
\n\n
"
;
assert
(
type
==
myType
);
}
xdr_int
(
xdrs
,
&
nextFreeIndex_
);
xdr_int
(
xdrs
,
&
actSize_
);
leafIndex_
.
processXdr
(
xdrs
);
...
...
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