1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-07-12 01:35:29 +02:00
PropertyT.jl/src/PropertyT.jl

31 lines
485 B
Julia
Raw Normal View History

2018-08-19 20:05:45 +02:00
__precompile__()
2017-03-13 15:56:07 +01:00
module PropertyT
2017-03-13 14:49:55 +01:00
2018-07-31 10:21:54 +02:00
using AbstractAlgebra
2019-01-11 06:32:09 +01:00
using LinearAlgebra
using SparseArrays
using Markdown
using Dates
2017-06-22 15:15:43 +02:00
using Groups
2017-05-28 20:03:57 +02:00
using GroupRings
2017-03-15 17:48:52 +01:00
2017-06-22 15:15:43 +02:00
using JLD
using JuMP
import AbstractAlgebra: Group, NCRing, perm
2019-01-14 17:46:36 +01:00
2018-09-05 08:55:13 +02:00
import MathProgBase.SolverInterface.AbstractMathProgSolver
2018-01-02 02:55:53 +01:00
include("laplacians.jl")
include("RGprojections.jl")
include("orbitdata.jl")
include("sos_sdps.jl")
include("checksolution.jl")
2019-06-30 13:19:24 +02:00
include("sqadjop.jl")
2019-01-11 06:32:09 +01:00
include("1712.07167.jl")
2018-09-05 10:35:58 +02:00
2019-06-30 13:19:24 +02:00
2017-03-13 14:49:55 +01:00
end # module Property(T)