1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-10-15 08:05:35 +02:00

Allow different AbstractMathProgSolvers in Settings

This commit is contained in:
kalmarek 2017-11-13 10:57:02 +01:00
parent a35122f8bb
commit 04a13616c6

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