Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.7 KB

README.md

File metadata and controls

43 lines (31 loc) · 1.7 KB

ReachabilityModels.jl

Documentation Status Community License
docs-dev CI codecov aqua zulip license

A repository of models for reachability analysis and safety verification

Usage

using ReachabilityModels, Plots

prob = load_model("building") # initial-value problem

sol = solve(prob, T=5.0); # solve it using default options

plot(sol, vars=(0, 25)) # plot the solution

or

prob = load_model("lorenz") # initial-value problem

meta = load_meta("lorenz") # load meta-information of this model

opts = meta["opts"] # default options
sol = solve(prob; opts...);