gaioguys / GAIO.jl

A Julia package for set oriented computations.
MIT License
8 stars 4 forks source link

Bugfix in plot.jl + Improve type definition of BoxSet #63

Closed April-Hannah-Lena closed 1 year ago

April-Hannah-Lena commented 1 year ago

There was asmall bug in plot.jl that made plotting in dimensions >3 act incorrectly.

Also, I added the box-type to the parameters of BoxSet:

struct BoxSet{B,P<:AbstractBoxPartition{B},S<:AbstractSet} <: AbstractSet{B}
    partition::P
    set::S
end

This makes code in algorithms.jl a bit prettier, and will make the next PR on TransferOperators more elegant.

gaioguy commented 1 year ago

Good idea!