diff --git a/property(T).jl b/property(T).jl index 419549b..b868061 100644 --- a/property(T).jl +++ b/property(T).jl @@ -2,15 +2,6 @@ using JuMP import Base: rationalize using GroupAlgebras -function products{T}(U::AbstractVector{T}, V::AbstractVector{T}) - result = Vector{T}() - for u in U - for v in V - push!(result, u*v) - end - end - return unique(result) -end function create_product_matrix(basis, limit) product_matrix = zeros(Int, (limit,limit))