2019-01-18 15:57:21 +01:00
|
|
|
using Test
|
2019-07-01 01:38:30 +02:00
|
|
|
using LinearAlgebra, SparseArrays
|
|
|
|
using AbstractAlgebra, Groups, GroupRings
|
|
|
|
using PropertyT
|
|
|
|
using JLD
|
2019-01-14 17:44:35 +01:00
|
|
|
|
2019-07-01 01:38:30 +02:00
|
|
|
using JuMP, SCS
|
2019-01-14 17:44:35 +01:00
|
|
|
|
2019-07-01 01:38:30 +02:00
|
|
|
with_SCS(iters; accel=1, eps=1e-10) =
|
2019-04-16 17:05:34 +02:00
|
|
|
with_optimizer(SCS.Optimizer,
|
2019-02-21 16:31:38 +01:00
|
|
|
linear_solver=SCS.Direct, max_iters=iters,
|
2019-07-01 01:38:30 +02:00
|
|
|
acceleration_lookback=accel, eps=eps, warm_start=true)
|
2019-04-16 17:05:34 +02:00
|
|
|
|
2019-02-21 16:31:38 +01:00
|
|
|
include("1703.09680.jl")
|
2019-07-05 18:57:39 +02:00
|
|
|
include("actions.jl")
|
2019-02-21 16:31:38 +01:00
|
|
|
include("1712.07167.jl")
|
2019-04-16 17:05:34 +02:00
|
|
|
include("SOS_correctness.jl")
|
2019-06-30 13:19:24 +02:00
|
|
|
include("1812.03456.jl")
|