1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-07-17 10:55:30 +02:00

specify exact types for OrbitData

This commit is contained in:
kalmarek 2017-11-08 09:58:37 +01:00
parent c1dc3850dd
commit 2aa82db1ac

View File

@ -20,13 +20,13 @@ suffix(s::Settings) = "$(s.upper_bound)"
prepath(s::Settings) = prefix(s) prepath(s::Settings) = prefix(s)
fullpath(s::Settings) = joinpath(prefix(s), suffix(s)) fullpath(s::Settings) = joinpath(prefix(s), suffix(s))
immutable OrbitData immutable OrbitData{T<:AbstractArray{Float64, 2}, LapType <:AbstractVector{Float64}}
name::String name::String
Us::Vector Us::Vector{T}
Ps::Vector{Array{JuMP.Variable,2}} Ps::Vector{Array{JuMP.Variable,2}}
cnstr::Vector cnstr::Vector{SparseMatrixCSC{Float64, Int}}
laplacian::Vector laplacian::LapType
laplacianSq::Vector laplacianSq::LapType
dims::Vector{Int} dims::Vector{Int}
end end