JuliaReach / Reachability.jl

Reachability and Safety of Nondeterministic Dynamical Systems
MIT License
50 stars 4 forks source link

Namespace conflict with TaylorSeries.update! #632

Closed schillic closed 5 years ago

schillic commented 5 years ago

Precompilation (or maybe also running the tests) gives

WARNING: using TaylorSeries.update! in module ReachSets conflicts with an existing identifier.

The conflict is with ProgressMeter.update!, but we even import this method because we override it.

As far as I know, the only solution is to do import X followed by a list of using X: ... with all the symbols that we need, where X is one of the packages that export update!.