mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-23 00:10:28 +01:00
migrate to AbstractAlgebra
This commit is contained in:
parent
75c249abb8
commit
81e08eb857
3
REQUIRE
3
REQUIRE
@ -4,6 +4,7 @@ SCS
|
||||
IntervalArithmetic
|
||||
JLD
|
||||
Memento
|
||||
Nemo 0.7.9-
|
||||
Nemo
|
||||
AbstractAlgebra
|
||||
Groups
|
||||
GroupRings
|
||||
|
@ -204,7 +204,7 @@ function λandP(m::JuMP.Model, data::OrbitData, sett::Settings)
|
||||
return λ, recP
|
||||
end
|
||||
|
||||
function load_preps(fname::String, G::Nemo.Group)
|
||||
function load_preps(fname::String, G::Group)
|
||||
lded_preps = load(fname, "perms_d")
|
||||
permG = PermutationGroup(length(first(lded_preps)))
|
||||
@assert length(lded_preps) == order(G)
|
||||
|
@ -6,7 +6,7 @@ include("Projections.jl")
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
function orbit_decomposition(G::Nemo.Group, E::Vector, rdict=GroupRings.reverse_dict(E))
|
||||
function orbit_decomposition(G::Group, E::Vector, rdict=GroupRings.reverse_dict(E))
|
||||
|
||||
elts = collect(elements(G))
|
||||
|
||||
@ -82,9 +82,9 @@ end
|
||||
function perm_reps(G::Group, E::Vector, E_rdict=GroupRings.reverse_dict(E))
|
||||
elts = collect(elements(G))
|
||||
l = length(elts)
|
||||
preps = Vector{Generic.perm}(l)
|
||||
preps = Vector{perm}(l)
|
||||
|
||||
permG = Nemo.PermutationGroup(length(E))
|
||||
permG = PermutationGroup(length(E))
|
||||
|
||||
Threads.@threads for i in 1:l
|
||||
preps[i] = permG(PropertyT.perm_repr(elts[i], E, E_rdict))
|
||||
@ -128,14 +128,14 @@ function orthSVD{T}(M::AbstractMatrix{T})
|
||||
return fact[:U][:,1:M_rank]
|
||||
end
|
||||
|
||||
function compute_orbit_data{T<:GroupElem}(logger, name::String, S::Vector{T}, autS::Nemo.Group; radius=2)
|
||||
function compute_orbit_data{T<:GroupElem}(logger, name::String, S::Vector{T}, autS::Group; radius=2)
|
||||
isdir(name) || mkdir(name)
|
||||
|
||||
info(logger, "Generating ball of radius $(2*radius)")
|
||||
|
||||
# TODO: Fix that by multiple dispatch?
|
||||
G = parent(first(S))
|
||||
Id = (isa(G, Nemo.Ring) ? one(G) : G())
|
||||
Id = (isa(G, Ring) ? one(G) : G())
|
||||
|
||||
@logtime logger E_2R, sizes = Groups.generate_balls(S, Id, radius=2*radius);
|
||||
info(logger, "Balls of sizes $sizes.")
|
||||
|
@ -1,10 +1,10 @@
|
||||
module PropertyT
|
||||
|
||||
using Nemo
|
||||
using AbstractAlgebra
|
||||
using Groups
|
||||
using GroupRings
|
||||
|
||||
import Nemo: Group, GroupElem, Ring, Generic.perm
|
||||
import AbstractAlgebra: Group, GroupElem, Ring, perm
|
||||
|
||||
using JLD
|
||||
using JuMP
|
||||
|
Loading…
Reference in New Issue
Block a user