Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
amdis
amdis-core
Merge requests
!65
make StandardProblemIteration copyable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
make StandardProblemIteration copyable
issue/copyable_standarditeration
into
master
Overview
0
Commits
1
Changes
3
Merged
Praetorius, Simon
requested to merge
issue/copyable_standarditeration
into
master
5 years ago
Overview
0
Commits
1
Changes
3
Expand
1
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9a07ac65
1 commit,
5 years ago
3 files
+
56
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/amdis/ProblemStat.hpp
+
2
−
3
Options
@@ -49,7 +49,7 @@ namespace AMDiS
template
<
class
Traits
>
class
ProblemStat
:
public
ProblemStatBase
,
public
StandardProblemIteration
,
public
StandardProblemIteration
Adaptor
<
ProblemStat
<
Traits
>>
{
using
Self
=
ProblemStat
;
@@ -81,8 +81,7 @@ namespace AMDiS
* access values corresponding to this problem in the parameter file.
**/
explicit
ProblemStat
(
std
::
string
const
&
name
)
:
StandardProblemIteration
(
dynamic_cast
<
ProblemStatBase
&>
(
*
this
))
,
name_
(
name
)
:
name_
(
name
)
{}
/// Constructor taking additionally a reference to a grid that is used
Loading