obdd-0.6.1: Ordered Reduced Binary Decision Diagrams

Safe HaskellNone
LanguageHaskell98

OBDD

Description

Reduced ordered binary decision diagrams, pure Haskell implementation. (c) Johannes Waldmann, 2008 - 2016

This module is intended to be imported qualified because it overloads some Prelude names.

Synopsis

Documentation

data OBDD v Source #

assumes total ordering on variables

display :: Show v => OBDD v -> IO () Source #

Calls the dot executable (must be in $PATH) to draw a diagram in an X11 window. Will block until this window is closed. Window can be closed gracefully by typing q when it has focus.

module OBDD.Make