Allow different AbstractMathProgSolvers in Settings

This commit is contained in:
kalmarek 2017-11-13 10:57:02 +01:00
parent a35122f8bb
commit 04a13616c6
1 changed files with 2 additions and 2 deletions

View File

@ -3,14 +3,14 @@ using SCS
export Settings, OrbitData
immutable Settings
immutable Settings{T<:AbstractMathProgSolver}
name::String
N::Int
G::Group
S::Vector
autS::Group
radius::Int
solver::SCSSolver
solver::T
upper_bound::Float64
tol::Float64
end