Skip to content

Reachability and Safety of Nondeterministic Dynamical Systems

License

Notifications You must be signed in to change notification settings

JuliaReach/Reachability.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reachability.jl

Build Status Docs latest license Code coverage Join the chat at https://gitter.im/JuliaReach/Lobby

Reachability is a software for reachability analysis and safety property checking that performs flowpipe computation of dynamical systems given by ordinary differential equations models (ODEs) in continuous or discrete time. It is written in Julia, a modern high-performance language for scientific computing.

Currently this package implements algorithms that can handle:

  • flowpipe computation of affine ODEs with nondeterministic inputs
  • hybrid dynamical systems (hybrid automata) with nondeterministic affine ODEs in each mode

Resources

Installing

This package requires Julia v1.0 or later. Refer to the official documentation on how to install and run Julia in your system.

Dependencies

The set computations depend on the core library LazySets.jl, which is also part of the JuliaReach framework. LazySets exploits the principle of lazy (on-demand) evaluation and uses support functions to represent lazy sets.

The latest stable release of LazySets.jl is installed automatically when you install Reachability.jl, see installation instructions below. You can always install the development version via Pkg.clone; see the installation section of LazySets.jl for further details.

Installation

To install this package, use the following command inside Julia's REPL:

using Pkg
Pkg.clone("https://github.com/JuliaReach/Reachability.jl")

Updating

To checkout the latest version, do

Pkg.checkout("Reachability")