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
727d8828
Commit
727d8828
authored
19 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Renamed IndexSet to ParallelIndexSet in ISTL.
[[Imported from SVN: r335]]
parent
ef3deb1f
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
doc/istl/comm/buildindexset.hh
+1
-1
1 addition, 1 deletion
doc/istl/comm/buildindexset.hh
doc/istl/comm/indexset.cc
+2
-2
2 additions, 2 deletions
doc/istl/comm/indexset.cc
doc/istl/comm/reverse.hh
+2
-2
2 additions, 2 deletions
doc/istl/comm/reverse.hh
with
5 additions
and
5 deletions
doc/istl/comm/buildindexset.hh
+
1
−
1
View file @
727d8828
...
...
@@ -22,7 +22,7 @@ typedef Dune::ParallelLocalIndex<Flag> LocalIndex;
* @param indexSet The index set to build.
*/
template
<
class
TG
,
int
N
>
void
build
(
Dune
::
IndexSet
<
TG
,
LocalIndex
,
N
>&
indexSet
)
void
build
(
Dune
::
Parallel
IndexSet
<
TG
,
LocalIndex
,
N
>&
indexSet
)
{
//
// The number of processes
...
...
This diff is collapsed.
Click to expand it.
doc/istl/comm/indexset.cc
+
2
−
2
View file @
727d8828
...
...
@@ -30,10 +30,10 @@ int main(int argc, char **argv)
// The index set we use to identify the local indices with the globally
// unique ones
typedef
Dune
::
IndexSet
<
GlobalIndex
,
LocalIndex
,
100
>
IndexSet
;
typedef
Dune
::
Parallel
IndexSet
<
GlobalIndex
,
LocalIndex
,
100
>
Parallel
IndexSet
;
// The index set
IndexSet
indexSet
;
Parallel
IndexSet
indexSet
;
build
(
indexSet
);
...
...
This diff is collapsed.
Click to expand it.
doc/istl/comm/reverse.hh
+
2
−
2
View file @
727d8828
...
...
@@ -15,10 +15,10 @@
* @param indexSet The index set to reverse.
*/
template
<
typename
TG
,
typename
TL
,
int
N
>
void
reverseLocalIndex
(
Dune
::
IndexSet
<
TG
,
TL
,
N
>&
indexSet
)
void
reverseLocalIndex
(
Dune
::
Parallel
IndexSet
<
TG
,
TL
,
N
>&
indexSet
)
{
// reverse the local indices
typedef
typename
Dune
::
IndexSet
<
TG
,
TL
,
N
>::
iterator
iterator
;
typedef
typename
Dune
::
Parallel
IndexSet
<
TG
,
TL
,
N
>::
iterator
iterator
;
iterator
end
=
indexSet
.
end
();
size_t
maxLocal
=
0
;
...
...
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