Skip to content

Commit

Permalink
Merge branch 'master' into mforets/publications
Browse files Browse the repository at this point in the history
  • Loading branch information
mforets authored Jan 30, 2019
2 parents bf7658a + 50b4b8b commit 4bcb095
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ makedocs(
"Discretization" => "lib/discretize.md",
"Distributed computations" => "lib/distributed.md"],
"Publications" => "publications.md",
"Citations" => "citations.md",
"About" => "about.md"
]
)
Expand Down
25 changes: 25 additions & 0 deletions docs/src/citations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Citations

```@contents
Pages = ["citations.md"]
```

This page list publications citing packages or papers from the JuliaReach ecosystem.

## Conference Proceedings

- Schupp, Stefan, and Erika Ábrahám. "Spread the Work: Multi-threaded Safety Analysis for Hybrid Systems." International Conference on Software Engineering and Formal Methods. Springer, Cham, 2018.

- Bak, Stanley, Hoang-Dung Tran, and Taylor T. Johnson. "Numerical Verification of Affine Systems with up to a Billion Dimensions." arXiv preprint arXiv:1804.01583 (2018). Accepted in Proceedings of [HSCC'19](http://hscc2019.eecs.umich.edu/): 22nd ACM International Conference on Hybrid Systems: Computation and Control (HSCC'19).

- Schupp, Stefan, Justin Winkens, and Erika Ábrahám. "Context-Dependent Reachability Analysis for Hybrid Systems." 2018 IEEE International Conference on Information Reuse and Integration (IRI). IEEE, 2018.

## Preprints

- Mitchell, Ian M., Jacob Budzis, and Andriy Bolyachevets. "Invariant, Viability and Discriminating Kernel Under-Approximation via Zonotope Scaling." arXiv preprint arXiv:1901.01006 (2019).

## Theses

- Rocca, Alexandre. Formal methods for modelling and validation of biological models. Diss. Grenoble Alpes, 2018.

- Schilling, Christian. "Fundamental techniques for the scalable analysis of systems." (2018).
File renamed without changes.
File renamed without changes.
16 changes: 8 additions & 8 deletions src/ReachSets/ReachSets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,13 @@ export PostOperator,
post,
tube⋂inv!

# ==========================
# Continuous post operators
# ==========================
include("ContinuousPost/BFFPSV18/BFFPSV18.jl")
include("ContinuousPost/BFFPSV18/reach_blocks.jl")
include("ContinuousPost/BFFPSV18/reach_blocks_wrapping_effect.jl")

# ========================
# Reachability Algorithms
# ========================
Expand All @@ -191,27 +198,20 @@ import Reachability.check_aliases_and_add_default_value!
available_algorithms = Dict{String, Dict{String, Any}}()

# "explicit" backends
include("reach_blocks.jl")
push!(available_algorithms, "explicit_blocks"=>Dict("func"=>reach_blocks!,
"is_explicit"=>true))

include("reach_blocks_wrapping_effect.jl")
push!(available_algorithms,
"wrap"=>Dict("func"=>reach_blocks_wrapping_effect!,
"is_explicit"=>true))

export available_algorithms

# ==========================
# Continuous post operators
# ==========================
include("ContinuousPost/BFFPSV18.jl")
include("DiscretePost/ConcreteDiscretePost.jl")

# ==========================
# Discrete post operators
# ==========================
include("DiscretePost/LazyDiscretePost.jl")
include("DiscretePost/ConcreteDiscretePost.jl")

# =========================
# External reach interface
Expand Down

0 comments on commit 4bcb095

Please sign in to comment.