Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
amdis
Commits
f406c469
Commit
f406c469
authored
Jun 12, 2017
by
Praetorius, Simon
Browse files
constness of some functions added
parent
ca3febb8
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/ProblemStat.h
View file @
f406c469
...
...
@@ -280,12 +280,22 @@ namespace AMDiS {
{
return
solution
;
}
inline
SystemVector
const
*
getSolution
()
const
{
return
solution
;
}
inline
DOFVector
<
double
>*
getSolution
(
int
i
)
{
return
solution
->
getDOFVector
(
i
);
}
inline
DOFVector
<
double
>
const
*
getSolution
(
int
i
)
const
{
return
solution
->
getDOFVector
(
i
);
}
/// Returns \ref rhs.
inline
SystemVector
*
getRhs
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment