Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
iwr
amdis
Commits
67e47bc7
Commit
67e47bc7
authored
Jun 12, 2017
by
Praetorius, Simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constness of some functions added
parent
fc199ebe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
AMDiS/src/ProblemStat.h
AMDiS/src/ProblemStat.h
+10
-0
No files found.
AMDiS/src/ProblemStat.h
View file @
67e47bc7
...
...
@@ -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
Markdown
is supported
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