Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/m4lvin/noobdd


https://github.com/m4lvin/noobdd

Last synced: 22 days ago
JSON representation

Awesome Lists containing this project

README

        

NooBDD
======

[![Build Status](https://travis-ci.org/m4lvin/NooBDD.svg?branch=master)](https://travis-ci.org/m4lvin/NooBDD)

A pure implementation of BDDs in Haskell.

Created for educational reasons, probably poor performance and many bugs.

We leave reduction and memory optimization to the Haskell Compiler.
The main data type is naive and simple:

data Bdd = Top | Bot | Node Int Bdd Bdd