mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-23 16:20:28 +01:00
remove old product_matrix code
This commit is contained in:
parent
54da1d326c
commit
4f14b0eff7
23
src/sdps.jl
23
src/sdps.jl
@ -1,29 +1,6 @@
|
|||||||
using JuMP
|
using JuMP
|
||||||
import MathProgBase: AbstractMathProgSolver
|
import MathProgBase: AbstractMathProgSolver
|
||||||
|
|
||||||
function create_product_matrix{T}(basis::Vector{T}, limit; twisted=true)
|
|
||||||
product_matrix = zeros(Int, (limit,limit))
|
|
||||||
basis_dict = Dict{T, Int}(x => i
|
|
||||||
for (i,x) in enumerate(basis))
|
|
||||||
for i in 1:limit
|
|
||||||
if twisted
|
|
||||||
x = inv(basis[i])
|
|
||||||
else
|
|
||||||
x = basis[i]
|
|
||||||
end
|
|
||||||
for j in 1:limit
|
|
||||||
w = x*basis[j]
|
|
||||||
product_matrix[i,j] = basis_dict[w]
|
|
||||||
# index = findfirst(basis, w)
|
|
||||||
# index ≠ 0 || throw(ArgumentError("Product is not supported on basis: $w"))
|
|
||||||
# product_matrix[i,j] = index
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return product_matrix
|
|
||||||
end
|
|
||||||
|
|
||||||
create_product_matrix{T}(basis::Vector{T}; twisted=twisted) = create_product_matrix(basis, length(basis); twisted=twisted)
|
|
||||||
|
|
||||||
function constraints_from_pm(pm, total_length=maximum(pm))
|
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]
|
||||||
|
Loading…
Reference in New Issue
Block a user