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
!46
add functionality to remove an added marker
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add functionality to remove an added marker
issue/remove_marker
into
master
Overview
0
Commits
3
Changes
3
Merged
Praetorius, Simon
requested to merge
issue/remove_marker
into
master
5 years ago
Overview
0
Commits
3
Changes
1
Expand
1
0
Merge request reports
Compare
version 1
version 3
2c13a217
5 years ago
version 2
d8b43dc1
5 years ago
version 1
26c51bbf
5 years ago
master (base)
and
version 2
latest version
2a0d6e7f
3 commits,
5 years ago
version 3
2c13a217
3 commits,
5 years ago
version 2
d8b43dc1
2 commits,
5 years ago
version 1
26c51bbf
1 commit,
5 years ago
Show latest version
1 file
+
4
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/amdis/ProblemStat.hpp
+
4
−
3
Options
@@ -361,7 +361,8 @@ namespace AMDiS
linearSolver_
=
solver
;
}
/// Wrap the solver into a non-destroying shared_ptr, or move it into a new shared_ptr
/// Wrap the solver reference into a non-destroying shared_ptr, or move it
/// into a new shared_ptr if it is a temporary.
template
<
class
S
,
REQUIRES
(
std
::
is_base_of
<
LinearSolverType
,
remove_cvref_t
<
S
>
>::
value
)
>
void
setSolver
(
S
&&
solver
)
@@ -399,8 +400,8 @@ namespace AMDiS
it
.
first
->
second
->
setMaximumMarking
(
true
);
}
/// Wrap the reference into a non-destroying shared_ptr or move it into a
new shared_ptr and
///
store it in the problemand store in the problem
/// Wrap the reference into a non-destroying shared_ptr or move it into a
///
new shared_ptr if it is a temporary.
template
<
class
M
,
REQUIRES
(
std
::
is_base_of
<
Marker
<
Grid
>,
remove_cvref_t
<
M
>>::
value
)
>
void
addMarker
(
M
&&
marker
)
Loading