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
ca7ad990
Commit
ca7ad990
authored
19 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Wrong vertices were excluded if the ordering of the global indices did
not follow the local ones. [[Imported from SVN: r4047]]
parent
7d18268c
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/graphcreator.hh
+3
-4
3 additions, 4 deletions
istl/paamg/graphcreator.hh
with
3 additions
and
4 deletions
istl/paamg/graphcreator.hh
+
3
−
4
View file @
ca7ad990
...
...
@@ -68,17 +68,16 @@ namespace Dune
template
<
class
OF
,
class
T
,
class
PI
>
static
GraphTuple
create
(
const
M
&
matrix
,
T
&
excluded
,
PI
&
pinfo
,
const
OF
&
)
PI
&
pinfo
,
const
OF
&
of
)
{
typedef
OF
OverlapFlags
;
MatrixGraph
*
mg
=
new
MatrixGraph
(
matrix
.
getmat
());
typedef
typename
PI
::
ParallelIndexSet
ParallelIndexSet
;
typedef
typename
ParallelIndexSet
::
const_iterator
IndexIterator
;
IndexIterator
iend
=
pinfo
.
indexSet
().
end
();
typename
T
::
iterator
iter
=
excluded
.
begin
();
for
(
IndexIterator
index
=
pinfo
.
indexSet
().
begin
();
index
!=
iend
;
++
index
,
++
iter
)
*
iter
=
(
OverlapFlags
::
contains
(
index
->
local
().
attribute
())
)
;
for
(
IndexIterator
index
=
pinfo
.
indexSet
().
begin
();
index
!=
iend
;
++
index
)
excluded
[
index
->
local
()]
=
of
.
contains
(
index
->
local
().
attribute
());
SubGraph
*
sg
=
new
SubGraph
(
*
mg
,
excluded
);
PropertiesGraph
*
pg
=
new
PropertiesGraph
(
*
sg
,
IdentityMap
(),
sg
->
getEdgeIndexMap
());
...
...
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