From af874770684c14775baaab657e1e5ce0c4a3cb5d Mon Sep 17 00:00:00 2001 From: kalmar Date: Mon, 13 Mar 2017 11:16:07 +0100 Subject: [PATCH] remove products from main file --- property(T).jl | 9 --------- 1 file changed, 9 deletions(-) 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))