Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
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
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
Core Modules
dune-istl
Commits
f188f811
Commit
f188f811
authored
19 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Removed more bugs.
Treatment of copy (overlap) vertices is changed. [[Imported from SVN: r540]]
parent
9487be5f
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
istl/paamg/galerkin.hh
+45
-12
45 additions, 12 deletions
istl/paamg/galerkin.hh
with
45 additions
and
12 deletions
istl/paamg/galerkin.hh
+
45
−
12
View file @
f188f811
...
...
@@ -77,7 +77,9 @@ namespace Dune
typename
M
::
CreateIterator
row_
;
/** @brief The aggregates mapping. */
const
AggregatesMap
<
V
>&
aggregates_
;
#ifdef DUNE_ISTL_WITH_CHECKING
bool
diagonalInserted
;
#endif
};
class
BaseGalerkinProduct
...
...
@@ -259,6 +261,7 @@ namespace Dune
const
T
&
pinfo
,
const
AggregatesMap
<
Vertex
>&
aggregates
,
const
O
&
overlap
,
const
std
::
size_t
*
overlapStart
,
const
OverlapVertex
<
Vertex
>*
overlapVertices
,
const
OverlapVertex
<
Vertex
>*
overlapEnd
,
R
&
row
);
...
...
@@ -314,10 +317,11 @@ namespace Dune
const
OverlapVertex
<
typename
G
::
VertexDescriptor
>*&
seed
,
const
OverlapVertex
<
typename
G
::
VertexDescriptor
>*
overlapEnd
)
{
const
typename
G
::
VertexDescriptor
aggregate
=
seed
->
aggregate
;
row
.
insert
(
aggregate
);
ConnectedBuilder
<
G
,
R
,
V
>
conBuilder
(
aggregates
,
graph
,
visitedMap
,
row
);
const
typename
G
::
VertexDescriptor
aggregate
=
seed
->
aggregate
;
while
(
seed
!=
overlapEnd
&&
aggregate
==
seed
->
aggregate
)
{
row
.
insert
(
seed
->
aggregate
);
// Walk over all neighbours and add them to the connected array.
visitNeighbours
(
graph
,
seed
->
vertex
,
conBuilder
);
// Mark vertex as visited
...
...
@@ -391,12 +395,17 @@ namespace Dune
overlapStart_
=
new
std
::
size_t
[
graph
.
maxVertex
()];
#ifndef NDEBUG
for
(
int
i
=
0
;
i
<
graph
.
maxVertex
();
++
i
)
overlapStart_
[
i
]
=-
1
;
#endif
std
::
size_t
startIndex
=
0
;
Vertex
aggregate
=
graph
.
maxVertex
()
+
1
;
OverlapVertex
<
Vertex
>*
vend
=
overlapVertices
+
overlapCount
;
for
(
OverlapVertex
<
Vertex
>*
vertex
=
overlapVertices
;
vertex
!=
overlapVertices
+
overlapCount
;
++
vertex
)
{
for
(
OverlapVertex
<
Vertex
>*
vertex
=
overlapVertices
;
vertex
!=
vend
;
++
vertex
)
{
if
(
aggregate
!=
vertex
->
aggregate
)
{
aggregate
=
vertex
->
aggregate
;
startIndex
=
vertex
-
overlapVertices
;
...
...
@@ -413,6 +422,7 @@ namespace Dune
const
T
&
pinfo
,
const
AggregatesMap
<
Vertex
>&
aggregates
,
const
O
&
overlap
,
const
std
::
size_t
*
overlapStart
,
const
OverlapVertex
<
Vertex
>*
overlapVertices
,
const
OverlapVertex
<
Vertex
>*
overlapEnd
,
R
&
row
)
...
...
@@ -424,6 +434,10 @@ namespace Dune
VertexIterator
vend
=
graph
.
end
();
#ifdef DUNE_ISTL_WITH_CHECKING
std
::
set
<
Vertex
>
examined
;
#endif
// The aggregates owned by the process have lower local indices
// then those not owned. We process them in the first pass.
// They represent the rows 0, 1, ..., n of the coarse matrix
...
...
@@ -433,6 +447,10 @@ namespace Dune
typedef
typename
GlobalLookup
::
IndexPair
IndexPair
;
const
IndexPair
*
pair
=
lookup
.
pair
(
*
vertex
);
if
(
pair
==
0
||
!
overlap
.
contains
(
pair
->
local
().
attribute
()))
{
#ifdef DUNE_ISTL_WITH_CHECKING
assert
(
examined
.
find
(
aggregates
[
*
vertex
])
==
examined
.
end
());
examined
.
insert
(
aggregates
[
*
vertex
]);
#endif
constructNonOverlapConnectivity
(
row
,
graph
,
visitedMap
,
aggregates
,
*
vertex
);
++
row
;
}
...
...
@@ -440,17 +458,20 @@ namespace Dune
// Now come the aggregates not owned by use.
// They represent the rows n+1, ..., N
for
(
VertexIterator
vertex
=
graph
.
begin
();
vertex
!=
ve
nd
;
++
vertex
)
if
(
!
get
(
visitedMap
,
*
vertex
)
)
{
while
(
overlapVertices
!=
o
ve
rlapEnd
)
if
(
overlapVertices
->
aggregate
!=
AggregatesMap
<
Vertex
>::
ISOLATED
)
{
#ifdef ISTL_WITH_CHECKING
#ifdef
DUNE_
ISTL_WITH_CHECKING
typedef
typename
GlobalLookup
::
IndexPair
IndexPair
;
const
IndexPair
*
pair
=
lookup
.
pair
(
seed
);
const
IndexPair
*
pair
=
lookup
.
pair
(
overlapVertices
->
vertex
);
assert
(
pair
!=
0
&&
overlap
.
contains
(
pair
->
local
().
attribute
()));
assert
(
examined
.
find
(
aggregates
[
overlapVertices
->
vertex
])
==
examined
.
end
());
examined
.
insert
(
aggregates
[
overlapVertices
->
vertex
]);
#endif
constructOverlapConnectivity
(
row
,
graph
,
visitedMap
,
aggregates
,
overlapVertices
,
overlapEnd
);
++
row
;
}
else
{
++
overlapVertices
;
}
}
...
...
@@ -477,18 +498,29 @@ namespace Dune
template
<
class
M
,
class
V
>
SparsityBuilder
<
M
,
V
>::
SparsityBuilder
(
M
&
matrix
,
const
AggregatesMap
<
V
>&
aggregates
)
:
row_
(
matrix
.
createbegin
()),
aggregates_
(
aggregates
)
{}
{
#ifdef DUNE_ISTL_WITH_CHECKING
diagonalInserted
=
false
;
#endif
}
template
<
class
M
,
class
V
>
void
SparsityBuilder
<
M
,
V
>::
operator
++
()
{
++
row_
;
#ifdef DUNE_ISTL_WITH_CHECKING
assert
(
diagonalInserted
);
diagonalInserted
=
false
;
#endif
}
template
<
class
M
,
class
V
>
void
SparsityBuilder
<
M
,
V
>::
insert
(
const
typename
M
::
size_type
&
index
)
{
row_
.
insert
(
index
);
#ifdef DUNE_ISTL_WITH_CHECKING
diagonalInserted
=
diagonalInserted
||
row_
.
index
()
==
index
;
#endif
}
template
<
class
T
>
...
...
@@ -524,7 +556,8 @@ namespace Dune
SparsityBuilder
<
M
,
typename
G
::
VertexDescriptor
>
sparsityBuilder
(
*
coarseMatrix
,
aggregates
);
ConnectivityConstructor
<
G
,
T
>::
examine
(
fineGraph
,
visitedMap
,
pinfo
,
aggregates
,
overlap
,
overlapVertices
,
aggregates
,
overlap
,
overlapStart_
,
overlapVertices
,
overlapVertices
+
count
,
sparsityBuilder
);
...
...
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