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

31 lines
612 B
Julia
Raw Normal View History

using Test
2022-11-07 18:45:12 +01:00
using LinearAlgebra
using SparseArrays
using Groups
import Groups.MatrixGroups
using PropertyT
import SymbolicWedderburn as SW
import StarAlgebras as SA
import PermutationGroups as PG
2022-11-07 18:45:12 +01:00
include("optimizers.jl")
include("check_positivity.jl")
include("quick_tests.jl")
2022-11-07 18:45:12 +01:00
2024-02-15 22:47:55 +01:00
if haskey(ENV, "CI")
@testset "PropertyT" begin
include("constratint_matrices.jl")
include("actions.jl")
2019-01-14 17:44:35 +01:00
include("1703.09680.jl")
include("1712.07167.jl")
include("1812.03456.jl")
2019-01-14 17:44:35 +01:00
2023-05-09 01:02:39 +02:00
include("roots.jl")
include("graded_adj.jl")
2023-03-19 23:28:36 +01:00
include("Chevalley.jl")
end
2022-11-07 18:45:12 +01:00
end