PropertyT.jl/test/runtests.jl

19 lines
460 B
Julia
Raw Normal View History

using Test
using LinearAlgebra, SparseArrays
using AbstractAlgebra, Groups, GroupRings
using PropertyT
using JLD
2019-01-14 17:44:35 +01:00
using JuMP, SCS
2019-01-14 17:44:35 +01:00
with_SCS(iters; accel=1, eps=1e-10, warm_start=true) =
with_optimizer(SCS.Optimizer,
2019-02-21 16:31:38 +01:00
linear_solver=SCS.Direct, max_iters=iters,
acceleration_lookback=accel, eps=eps, warm_start=warm_start)
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")
include("SOS_correctness.jl")
2019-06-30 13:19:24 +02:00
include("1812.03456.jl")