From 34cb1c80ab2dba0683fafb09de62ac1f4f562f23 Mon Sep 17 00:00:00 2001 From: kalmar Date: Thu, 8 Jun 2017 21:37:15 +0200 Subject: [PATCH] make ProblemData less specialised --- Orb_AutFN.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Orb_AutFN.jl b/Orb_AutFN.jl index 432ec81..3ad6199 100644 --- a/Orb_AutFN.jl +++ b/Orb_AutFN.jl @@ -12,11 +12,11 @@ include("OrbitDecomposition.jl") immutable ProblemData{T} name::String - Us::Vector{SparseMatrixCSC{Float64,Int}} + Us::Vector Ps::Vector{Array{JuMP.Variable,2}} - cnstr::Vector{T} - laplacian::SparseVector{Float64} - laplacianSq::SparseVector{Float64} + cnstr::Vector + laplacian::Vector + laplacianSq::Vector dims::Vector{Int} end