The Java Library for Algebraic Decision Diagrams
With the ADD-Lib we introduce a powerful framework for Decision Diagrams to the Java world. Its core bases on the CUDD library [1] – a popular and extensive C-library for the data structure. With the ADD-Lib we bring its extensive functionality to the Java world. We introduce type safety and substantial support varying Custom Algebraic Structures. Whether you are interested in fuzzy logic decision diagrams or decision diagrams over permutation groups, with the ADD-Lib you can easily lift your algebraic structure to decision diagrams.
It’s Open-source:
It’s on Maven Central
To use the latest release of the ADD-Lib in your Maven project, simply include the following dependency in your pom.xml
.
<dependencies>
...
<dependency>
<groupId>info.scce</groupId>
<artifactId>addlib</artifactId>
<version>2.0.19-BETA</version>
</dependency>
</dependencies>
[1] F. Somenzi, “CUDD: CU Decision Diagram Package”, vlsi.colorado.edu/~fabio/, 2018.
-
ADD-Lib 2.0.0 BETA Release
Sep 20, 2018 by F. Gossen, A. Murtovi, J. Linden, and B. Steffen
Today we finally open-sourced the ADD-Lib and made it available to the public. With the ADD-Lib we introduce a powerful framework for Decision Diagrams to the Java world. The library comprises Binary Decision Diagrams (BDDs), Zero-supressed Decision Diagrams (ZDDs), Algebraic Decision Diagrams (ADDs), and supports the seamless adaptation to custom algebraic structures – may it be fuzzy logics, string concatenation, or permutation groups. The public repository is hosted at https://gitlab.com/scce/add-lib. To use the first public...