Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
agnumpde
dune-solvers
Commits
a82dc4ef
Commit
a82dc4ef
authored
9 years ago
by
Uli Sack
Browse files
Options
Downloads
Patches
Plain Diff
give rhs constructor parameter the const qualifier - same as in the
setter method as well as the base clas constructors
parent
57552d01
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/solvers/iterationsteps/multigridstep.hh
+2
-2
2 additions, 2 deletions
dune/solvers/iterationsteps/multigridstep.hh
with
2 additions
and
2 deletions
dune/solvers/iterationsteps/multigridstep.hh
+
2
−
2
View file @
a82dc4ef
...
...
@@ -34,7 +34,7 @@
MultigridStep
(
const
MatrixType
&
mat
,
VectorType
&
x
,
VectorType
&
rhs
,
const
VectorType
&
rhs
,
int
mu
,
int
nu1
,
int
nu2
,
LinearIterationStep
<
MatrixType
,
VectorType
>*
preSmoother
,
LinearIterationStep
<
MatrixType
,
VectorType
>*
postSmoother
,
...
...
@@ -56,7 +56,7 @@
MultigridStep
(
const
MatrixType
&
mat
,
VectorType
&
x
,
VectorType
&
rhs
)
:
const
VectorType
&
rhs
)
:
LinearIterationStep
<
MatrixType
,
VectorType
>
(
mat
,
x
,
rhs
),
basesolver_
(
0
),
preprocessCalled
(
false
)
...
...
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