From a8bf216c7e20578a2da8ff8c12e3bee7fee06394 Mon Sep 17 00:00:00 2001 From: kalmar Date: Fri, 13 Jan 2017 18:03:08 +0100 Subject: [PATCH] cosmetic --- property(T).jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/property(T).jl b/property(T).jl index 3bac2c5..b180095 100644 --- a/property(T).jl +++ b/property(T).jl @@ -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)