Skip to content
forked from Ecdar/Reveaal

A model checking engine for ECDAR (Environment for Compositional Design and Analysis of Real Time Systems) written in rust.

Notifications You must be signed in to change notification settings

Ecdar-SW5/Reveaal

 
 

Repository files navigation

Reveaal

About

This is a model checking engine for ECDAR (Environment for Compositional Design and Analysis of Real Time Systems) written in rust.

DBM Library

The engine uses the ECDAR DBM Library for operations on zones of time (https://www.github.com/ECDAR/EDBM).

Prerequisites

  • A rust compiler installed (https://www.rust-lang.org/learn/get-started)
  • A folder containing the model components to check
  • ProtoBuf compiler protoc (for the Ubuntu linux distribution apt install protobuf-compiler)
  • Download ProtoBuf definitions with git submodule update --init --recursive

Building the project

  • Build the project using cargo build
  • Optionally run the tests using cargo test

Cross compiling

The project is pure Rust so one should be able to crosscompile to any platform with a rust target.

Compiling to Windows

Make sure you have mingw installed sudo apt-get install mingw-w64 and the rustc windows target is installed with rustup target add x86_64-pc-windows-gnu and build with cargo: cargo build --target x86_64-pc-windows-gnu

PR - Review Guide

  • PR's should be made as a draft at first and reviewed internally by a group member before its sent out for external review.
  • Published PR's should be reviewed within a day.

Reviewing a PR

  • Ensure the new functionality described in the PR is implemented and working.
  • Run Cargo bench on the main branch as well as the PR branch. Compare the results to check if performance is intact.
  • Check if the code is properly documented. This means I/O and panic criteria should be documented as well as what it does if it is public.
  • All tests should pass and if there is new functionality it should be tested. It is however up to the reviewers to judge if the tests are good enough.
  • 2 External Reviewers should approve the PR before its considered done.

About

A model checking engine for ECDAR (Environment for Compositional Design and Analysis of Real Time Systems) written in rust.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 100.0%