Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.84 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.84 KB

com.github.javabdd

Intro

JavaBDD is a Java library for manipulating BDDs (Binary Decision Diagrams). Binary decision diagrams are widely used in model checking, formal verification, optimizing circuit diagrams, etc.

The JavaBDD API is based on that of the popular BuDDy package, a BDD package written in C by Jørn Lind-Nielsen. However, JavaBDD's API is designed to be object-oriented. The ugly C function interface and reference counting schemes have been hidden underneath a uniform, object-oriented interface.

JavaBDD includes multiple 100% Java implementations. JavaBDD provides a uniform interface to all of these implementations, so you can easily switch between them without having to make changes to your application.

JavaBDD is designed for high performance applications, so it also exposes many of the lower level options of the BDD library, like cache sizes and advanced variable reordering.

Maven

JavaBDD is available on Maven Central:

  • groupId: com.github.com-github-javabdd
  • artifactId: com.github.javabdd

You can find the different versions of the library on central.sonatype.com.

History

This version of JavaBDD is a fork of the Sourceforge version, see:

It is based on trunk revision r483 from 2011-11-24.

See CHANGES.md for all changes that have been made in this fork.

See CONTRIBUTORS.md for all contributors.

Further information

License

This project inherits the license from the Sourceforge project it is forked from, the GNU Library General Public License v2 (LGPLv2) or later. See the LICENSE.txt file.

SPDX-License-Identifier: LGPL-2.0-or-later