mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-26 17:05:27 +01:00
specify exact types for OrbitData
This commit is contained in:
parent
c1dc3850dd
commit
2aa82db1ac
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user