mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-12-25 02:15:29 +01:00
constraints_from_pm now have default total_length
This commit is contained in:
parent
8b0033da58
commit
148bab5af2
@ -24,7 +24,7 @@ end
|
|||||||
|
|
||||||
create_product_matrix{T}(basis::Vector{T}; twisted=twisted) = create_product_matrix(basis, length(basis); twisted=twisted)
|
create_product_matrix{T}(basis::Vector{T}; twisted=twisted) = create_product_matrix(basis, length(basis); twisted=twisted)
|
||||||
|
|
||||||
function constraints_from_pm(pm, total_length)
|
function constraints_from_pm(pm, total_length=maximum(pm))
|
||||||
n = size(pm,1)
|
n = size(pm,1)
|
||||||
constraints = constraints = [Array{Int,1}[] for x in 1:total_length]
|
constraints = constraints = [Array{Int,1}[] for x in 1:total_length]
|
||||||
for j in 1:n
|
for j in 1:n
|
||||||
@ -36,8 +36,6 @@ function constraints_from_pm(pm, total_length)
|
|||||||
return constraints
|
return constraints
|
||||||
end
|
end
|
||||||
|
|
||||||
constraints_from_pm(pm) = constraints_from_pm(pm, maximum(pm))
|
|
||||||
|
|
||||||
function splaplacian(RG::GroupRing, S, basis, n=length(basis))
|
function splaplacian(RG::GroupRing, S, basis, n=length(basis))
|
||||||
result = RG(spzeros(n))
|
result = RG(spzeros(n))
|
||||||
result[RG.group()] = float(length(S))
|
result[RG.group()] = float(length(S))
|
||||||
|
Loading…
Reference in New Issue
Block a user