From 931189667dc8ab9689cf2d9e222bd0545c7be59a Mon Sep 17 00:00:00 2001 From: kalmarek Date: Fri, 3 Nov 2017 16:37:45 +0100 Subject: [PATCH] add commented-out Mosek solver --- AutFN_orbit.jl | 5 +++++ SL_orbit.jl | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/AutFN_orbit.jl b/AutFN_orbit.jl index bf90ae6..b45e4cb 100644 --- a/AutFN_orbit.jl +++ b/AutFN_orbit.jl @@ -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) diff --git a/SL_orbit.jl b/SL_orbit.jl index b23e2a0..62303a7 100644 --- a/SL_orbit.jl +++ b/SL_orbit.jl @@ -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)