Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create Reduced Ordered Binary Decision Diagram (ROBDD) from truth table

Is there a software package (preferable an application, not library) that creates Reduced Ordered Binary Decision Diagrams (ROBDDs) from a given truth table (in some text format)?

like image 405
tomash Avatar asked Feb 18 '23 01:02

tomash


2 Answers

You can also try this: http://formal.cs.utah.edu:8080/pbl/BDD.php

It is the best tool for BDDs I used so far.

like image 105
remustata Avatar answered Apr 28 '23 06:04

remustata


With any BDD library you can do what you want. Of course, you must write a piece of code by yourself.

If you are looking for a lightweight tool, I often use an applet like this to have a quick look at the BDD of a function:

http://tams-www.informatik.uni-hamburg.de/applets/java-bdd/

like image 20
Lorenzo Avatar answered Apr 28 '23 05:04

Lorenzo