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
01aea3b2
Commit
01aea3b2
authored
16 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Methods need to be static. isPublic is true by default.
[[Imported from SVN: r936]]
parent
df4f300e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
istl/communicator.hh
+2
-2
2 additions, 2 deletions
istl/communicator.hh
istl/plocalindex.hh
+1
-1
1 addition, 1 deletion
istl/plocalindex.hh
with
3 additions
and
3 deletions
istl/communicator.hh
+
2
−
2
View file @
01aea3b2
...
...
@@ -185,9 +185,9 @@ namespace Dune
{
typedef
typename
CommPolicy
<
T
>::
IndexedType
IndexedType
;
const
IndexedType
&
gather
(
const
T
&
vec
,
int
i
);
static
const
IndexedType
&
gather
(
const
T
&
vec
,
int
i
);
void
scatter
(
T
&
vec
,
const
IndexedType
&
v
,
int
i
);
static
void
scatter
(
T
&
vec
,
const
IndexedType
&
v
,
int
i
);
};
...
...
This diff is collapsed.
Click to expand it.
istl/plocalindex.hh
+
1
−
1
View file @
01aea3b2
...
...
@@ -76,7 +76,7 @@ namespace Dune
* @param isPublic True if the index might also be
* known to other processes.
*/
ParallelLocalIndex
(
size_t
localIndex
,
const
Attribute
&
attribute
,
bool
isPublic
);
ParallelLocalIndex
(
size_t
localIndex
,
const
Attribute
&
attribute
,
bool
isPublic
=
true
);
/**
* @brief Parameterless constructor.
*
...
...
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