jmejia8 / Metaheuristics.jl

High-performance metaheuristics for optimization coded purely in Julia.
https://jmejia8.github.io/Metaheuristics.jl/stable/
Other
253 stars 27 forks source link

Reuse intervals from IntervalSets.jl #82

Closed aplavin closed 1 year ago

aplavin commented 1 year ago

Starting from a recent version of Metaheuristics, it defines and exports ... This binding clashes with intervals packages, with IntervalSets.jl being the most popular one by far. Aside from the usage inconvenience coming from the clash, relying on well-tested and reliable intervals machinery from IntervalSets would also be nice.

So, please consider reusing already existing intervals from the IntervalSets.jl package, instead of defining another interval type.

jmejia8 commented 1 year ago

Thank you for letting me know. Actually, SearchSpaces is exporting .. and Metaheuristics re-exporting it. Therefore, the issue will be solved there :)

aplavin commented 1 year ago

Great, thanks for looking at it!