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)