sybila / biodivine-hctl-model-checker

Symbolic HCTL model checker for Boolean networks
MIT License
0 stars 0 forks source link
boolean-network model-checking rust

Crates.io Api Docs Continuous integration Coverage GitHub last commit Crates.io

Symbolic model checker for logic HCTL written in RUST

This repository contains the Rust implementation of the symbolic model checker for hybrid logic HCTL. The method is focused on the analysis of (partially specified) Boolean networks. In particular, it allows to check for any behavioural hypotheses expressible in HCTL on large, non-trivial networks. This includes properties like stability, bi-stability, attractors, or oscillatory behaviour.

Prerequisites

To run the model checker, you will need the Rust compiler. We recommend following the instructions on rustlang.org.

If you are not familiar with Rust, there are also Python bindings for most of the important functionality in AEON.py.

Functionality

This repository encompasses the CLI model-checking tool, and the model-checking library.

Model-checking tool

Given a (partially defined) Boolean network model and HCTL formulae (encoding properties we want to check), the tool computes all the states of the network (and corresponding parametrizations) that satisfy the formula. Currently, there is only a command-line interface, with a GUI soon to be implemented. Depending on the mode, the program can generate BDDs encoding the resulting states and parametrizations, it can print the numbers of satisfying states and colours, or print all the satisfying assignments.

To directly invoke the model checker, compile the code using

cargo build --release

and then run the binary:

.\target\release\hctl-model-checker <MODEL_PATH> <FORMULAE_PATH>

We support the following optional arguments:

Library

This package also offers an API for utilizing the model-checking functionality. The most relevant high-level functionality can be found in modules analysis and model_checking. Further, useful functionality and structures regarding parsing (parser, tokenizer, syntactic trees) is in preprocessing module.

Model formats

The model checker takes BN models in aeon format as its default input, with many example models present in the benchmark_models directory. However, you can also use SBML and boolnet models.

HCTL formulae

The file with HCTL properties must contain one formula in a correct format per line. The formulae must not contain free variables.

The format is illustrated on benchmark_formulae.txt containing several important formulae.

To create custom formulae, you can use any HCTL operators and many derived ones. We use the following syntax:

The operator precedence is following (the lower, the stronger):

However, it is strongly recommended to use parentheses wherever possible to prevent any parsing issues.

Extended formulae

Wild-card propositions

The library also provides functions to model check "extended" formulae that contain so called "wild-card propositions". These special propositions are evaluated as an arbitrary (coloured) set of states provided by the user. This allows the re-use of already pre-computed results in subsequent computations. In formulae, the syntax of these propositions is %property_name%.

Restricting domains of quantified variables

You can also directly restrict a domain of any quantified variable in a following manner:

The domain is treated similar as a "wild-card proposition" (see above). During the computation, the user provides an arbitrary set of states that will be used as the domain for the variable (the variable may only take the value of states from that set).

This way the user can directly restrict the domain of every {x} encountered during bottom-up computation (makes formula more readable and speeds up the computation).

The following equivalences hold: