We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1c9dbc commit 1001fcbCopy full SHA for 1001fcb
src/solver.jl
@@ -0,0 +1,9 @@
1
+"Abstract type from which JSO solvers derive."
2
+abstract type AbstractSolver end
3
+
4
+function solve!(solver::AbstractSolver, model::AbstractNLPModel; kwargs...)
5
+ stats = GenericExecutionStats(:unknown, model)
6
+ solve!(solver, model, stats; kwargs...)
7
+end
8
9
+function solve!(::AbstractSolver, ::AbstractNLPModel, ::GenericExecutionStats; kwargs...) end
0 commit comments