We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DummyState
1 parent bf6ff1d commit c146721Copy full SHA for c146721
1 file changed
src/test_suite.jl
@@ -10,9 +10,13 @@ using ..AlgorithmsInterface
10
struct DummyAlgorithm{S <: AlgorithmsInterface.StoppingCriterion} <: AlgorithmsInterface.Algorithm
11
stopping_criterion::S
12
end
13
+
14
struct DummyProblem <: AlgorithmsInterface.Problem end
-mutable struct DummyState{S <: AlgorithmsInterface.StoppingCriterionState} <: AlgorithmsInterface.State
15
16
+mutable struct DummyState{V, S <: AlgorithmsInterface.StoppingCriterionState} <: AlgorithmsInterface.State
17
+ iterate::V
18
stopping_criterion_state::S
19
iteration::Int
20
21
22
0 commit comments