All Projects → tulip-control → omega

tulip-control / omega

Licence: other
Specify and synthesize systems using symbolic algorithms

Programming Languages

python
139335 projects - #7 most used programming language
TLA
29 projects
Makefile
30231 projects

Projects that are alternatives of or similar to omega

lf syn
Learning-Based View Synthesis for Light Field Cameras - Pytorch
Stars: ✭ 31 (-13.89%)
Mutual labels:  synthesis
async fifo
A dual clock asynchronous FIFO written in verilog, tested with Icarus Verilog
Stars: ✭ 117 (+225%)
Mutual labels:  synthesis
Main-Supercollider-Files
my supercollider codes, version history is at the branches
Stars: ✭ 21 (-41.67%)
Mutual labels:  synthesis
frame transpiler
Frame is a markdown language for creating state machines (automata) in 8 programming languages as well as generating UML documentation.
Stars: ✭ 35 (-2.78%)
Mutual labels:  automata
duff
Pure OCaml implementation of libXdiff (Rabin's fingerprint)
Stars: ✭ 20 (-44.44%)
Mutual labels:  rabin
magphase
MagPhase Vocoder: Speech analysis/synthesis system for TTS and related applications.
Stars: ✭ 76 (+111.11%)
Mutual labels:  synthesis
stevia
A simple (unfinished) SMT solver for QF_ABV.
Stars: ✭ 30 (-16.67%)
Mutual labels:  bitvector
SMCDEL
A symbolic model checker for Dynamic Epistemic Logic.
Stars: ✭ 31 (-13.89%)
Mutual labels:  symbolic
synthesis
🔥 Synthesis is Meteor + Polymer
Stars: ✭ 28 (-22.22%)
Mutual labels:  synthesis
Metatheory.jl
General purpose algebraic metaprogramming and symbolic computation library for the Julia programming language: E-Graphs & equality saturation, term rewriting and more.
Stars: ✭ 266 (+638.89%)
Mutual labels:  symbolic
lessampler
lessampler is a Singing Voice Synthesizer
Stars: ✭ 59 (+63.89%)
Mutual labels:  synthesis
csound-extended
Extensions for Csound including algorithmic composition, Android app, and WebAssembly.
Stars: ✭ 38 (+5.56%)
Mutual labels:  synthesis
Comet
Web Synthesis on steroids
Stars: ✭ 18 (-50%)
Mutual labels:  synthesis
xeda
Cross EDA Abstraction and Automation
Stars: ✭ 25 (-30.56%)
Mutual labels:  synthesis
libvata
VATA Tree Automata Library
Stars: ✭ 23 (-36.11%)
Mutual labels:  automata
herbie
Optimize floating-point expressions for accuracy
Stars: ✭ 614 (+1605.56%)
Mutual labels:  synthesis
typestate-rs
Proc-macro typestate DSL for Rust
Stars: ✭ 110 (+205.56%)
Mutual labels:  automata
PySimpleAutomata
Academic Python Library to manage DFA, NFA and AFW automata.
Stars: ✭ 17 (-52.78%)
Mutual labels:  automata
rustfst
Rust re-implementation of OpenFST - library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs). A Python binding is also available.
Stars: ✭ 104 (+188.89%)
Mutual labels:  automata
safe-control-gym
PyBullet CartPole and Quadrotor environments—with CasADi symbolic a priori dynamics—for learning-based control and RL
Stars: ✭ 272 (+655.56%)
Mutual labels:  symbolic

Build Status Coverage Status

About

A package of symbolic algorithms using binary decision diagrams (BDDs) for synthesizing implementations from temporal logic specifications. This is useful for designing systems, especially vehicles that carry humans.

  • Synthesis algorithms for Moore or Mealy implementations of:

    See omega.games.gr1 and the example gr1_synthesis_intro.

  • Enumeration of state machines (as networkx graphs) from the synthesized symbolic implementations. See omega.games.enumeration.

  • Facilities to simulate the resulting implementations with little and readable user code. See omega.steps and the example moore_moore.

  • Code generation for the synthesized symbolic implementations. This code is correct-by-construction. See omega.symbolic.codegen.

  • Minimal covering with a symbolic algorithm to find a minimal cover, and to enumerate all minimal covers. Used to convert BDDs to minimal formulas. See omega.symbolic.cover and omega.symbolic.cover_enum, and the example minimal_formula_from_bdd.

  • First-order linear temporal logic (LTL) with rigid quantification and substitution. See omega.logic.lexyacc, omega.logic.ast, and omega.logic.syntax.

  • Bitblaster of quantified integer arithmetic (integers -> bits). See omega.logic.bitvector.

  • Translation from past to future LTL, using temporal testers. See omega.logic.past.

  • Symbolic automata that manage first-order formulas by seamlessly using binary decision diagrams (BDDs) underneath. You can:

    • declare variables and constants
    • translate:
      1. formulas to BDDs and
      2. BDDs to minimal formulas via minimal covering
    • quantify
    • substitute
    • prime/unprime variables
    • get the support of predicates
    • pick satisfying assignments (or work with iterators)
    • define operators

    See omega.symbolic.temporal and omega.symbolic.fol for more details.

  • Facilities to write symbolic fixpoint algorithms. See omega.symbolic.fixpoint and omega.symbolic.prime, and the example reachability_solver.

  • Conversion from graphs annotated with formulas to temporal logic formulas. These graphs can help specify transition relations. The translation is in the spirit of predicate-action diagrams.

    See omega.symbolic.logicizer and omega.automata for more details, and the example symbolic.

  • Enumeration and plotting of state predicates and actions represented as BDDs. See omega.symbolic.enumeration.

Documentation

In doc/doc.md.

Installation

pip install omega

or

python setup.py install

The package and its dependencies are pure Python.

For solving demanding games, install the Cython module dd.cudd that interfaces to CUDD. Instructions are available at dd.

License

BSD-3, see LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].