ReachabilityAnalysis.jl icon indicating copy to clipboard operation
ReachabilityAnalysis.jl copied to clipboard

Add backend option to exp in discretization

Open mforets opened this issue 2 years ago • 1 comments

mforets avatar Mar 31 '23 15:03 mforets

An alternative is to use the functionality for controlling the backend through LazySets.

julia> ReachabilityAnalysis.LazySets.set_exponential_backend!(ExponentialUtilities)
Val{:ExponentialUtilities}()

julia> ReachabilityAnalysis.LazySets.set_exponential_backend!(Expokit)
Val{:Expokit}()

I have prepared #704.

The only thing to consider is to add the function set_exponential_backend! to ReachabilityAnalysis so you do not have to write this long command. Note that LazySets does not export the function.

schillic avatar Apr 22 '23 20:04 schillic