-
Notifications
You must be signed in to change notification settings - Fork 4
/
Reachability.jl
39 lines (30 loc) · 1.05 KB
/
Reachability.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
__precompile__()
"""
This is the main module and provides interfaces for specifying and solving reachability problems.
"""
module Reachability
using Reexport, RecipesBase, Memento, MathematicalSystems,
MathematicalPredicates, HybridSystems, LinearAlgebra, Suppressor,
SparseArrays, Printf
@reexport using LazySets
import LazySets: use_precise_ρ
using LazySets: LinearMap, AffineMap, ResetMap, Interval
import LazySets.Approximations: project
include("logging.jl")
include("Options/dictionary.jl")
include("Options/validation.jl")
include("Options/default_options.jl")
include("Utils/Utils.jl")
include("ReachSets/ReachSets.jl")
@reexport using Reachability.Utils,
Reachability.ReachSets
include("solve.jl")
include("plot_recipes.jl")
# specify behavior of line search algorithm by dispatching on post operator
global discrete_post_operator = ConcreteDiscretePost()
@suppress_err begin
function use_precise_ρ(cap::Intersection{N})::Bool where N<:Real
return use_precise_ρ(discrete_post_operator, cap)
end
end
end # module