add commented-out Mosek solver

This commit is contained in:
kalmarek 2017-11-03 16:37:45 +01:00
parent 096bc5c1c2
commit 931189667d
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,6 @@
using ArgParse
using SCS
# using Mosek
using Nemo
if VERSION >= v"0.6.0"
@ -146,6 +147,10 @@ function main()
# AutS = PermutationGroup(N)
solver = SCSSolver(eps=tol, max_iters=iterations, linearsolver=SCS.Direct)
# solver = Mosek.MosekSolver(
# MSK_DPAR_INTPNT_CO_TOL_REL_GAP=tol,
# MSK_IPAR_INTPNT_MAX_ITERATIONS=iterations,
# QUIET=false)
sett = Settings(dirname, N, G, S, AutS, radius, solver, upper_bound, tol)

View File

@ -1,5 +1,6 @@
using ArgParse
using SCS.SCSSolver
# using Mosek
using Nemo
if VERSION >= v"0.6.0"
@ -189,6 +190,10 @@ function main()
# AutS = PermutationGroup(N)
solver = SCSSolver(eps=tol, max_iters=iterations, linearsolver=SCS.Direct)
# solver = Mosek.MosekSolver(
# MSK_DPAR_INTPNT_CO_TOL_REL_GAP=tol,
# MSK_IPAR_INTPNT_MAX_ITERATIONS=iterations,
# QUIET=false)
sett = Settings(dirname, N, G, S, AutS, radius, solver, upper_bound, tol)