1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-07-12 01:35:29 +02:00
This commit is contained in:
kalmar 2017-01-13 18:03:08 +01:00
parent 95618eb0f9
commit a8bf216c7e

View File

@ -81,13 +81,11 @@ function prepare_Laplacian_and_constraints{T}(S::Vector{Array{T,2}};)
identity = eye(S[1])
B₂, B₄ = generate_B₂_and_B₄(identity, S)
product_matrix, matrix_constraints = create_product_matrix(B₄,length(B₂));
L= Laplacian(S, B₄);
const Δ = GroupAlgebraElement(L, product_matrix)
return Δ, matrix_constraints
return GroupAlgebraElement(L, product_matrix), matrix_constraints
end
function create_SDP_problem(matrix_constraints, Δ::GroupAlgebraElement)