What is the best Binary Decision Diagram library for Java?

Posted by reprogrammer on Stack Overflow See other posts from Stack Overflow or by reprogrammer
Published on 2010-04-05T15:40:56Z Indexed on 2010/04/06 21:23 UTC
Read the original article Hit count: 461

Filed under:
|
|
|

A Binary Decision Diagram (BDD) is a data structure to represent boolean functions. I'd like use this data structure in a Java program. My search for Java based BDD libraries resulted into the following packages.

  1. Java Decision Diagram Libraries
  2. JavaBDD
  3. JDD
  4. JBDD
  5. bddbddb

If you know of any other BDD libraries available for Java programs, please let me know so that I add it to the list above. If you have used any of these libraries, please tell me about your experience with the library. In particular, I'd like you to compare the available libraries along the following dimensions.

  1. Quality. Is the library mature and reasonably bug free?
  2. Performance. How do you evaluate the performance of the library?
  3. Support. Could you easily get support whenever you encountered a problem with the library? Was the library well documented?
  4. Ease of use. Was the API well designed? Could you install and use the library quickly and easily?

Please mention the version of the library that you are evaluating.

© Stack Overflow or respective owner

Related posts about data-structures

Related posts about library