set warmstart to false by default

This commit is contained in:
kalmarek 2017-12-28 19:01:48 +01:00
parent 256422cf1b
commit 72f8a9d02c
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ function parse_commandline()
default = 2
"--warmstart"
help = "Use warmstart.jl as the initial guess for SCS"
action = :store_false
action = :store_true
end
return parse_args(settings)

View File

@ -43,7 +43,7 @@ function parse_commandline()
action = :store_true
"--warmstart"
help = "Use warmstart.jl as the initial guess for SCS"
action = :store_false
action = :store_true
end
return parse_args(settings)