We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
mutable struct DoubleDescription{T<:Real,C} A::Matrix{T} R::Vector{C} K::Set{Int} adj::Dict{Tuple{Int,Int},Bool} num_rays::Int end mutable struct CountedVector{T<:Real,C} v::Vector{T} Av::Vector{T} dd::DoubleDescription{T,C} id::Int function CountedVector{T}(v::Vector{T}, dd::DoubleDescription{T,C}) where {T,C} dd.num_rays += 1 canonicalize!(v) new{T,C}(v, dd.A*v, dd, dd.num_rays) end end
One should be able to restructure things to avoid double references
The text was updated successfully, but these errors were encountered:
Closed by #16?
Sorry, something went wrong.
I'll check today, I think so
No branches or pull requests
One should be able to restructure things to avoid double references
The text was updated successfully, but these errors were encountered: