General question for using jdd library without any reduction rules

Issue #1 closed
Anna Hofstaetter created an issue

Hello Arash Vahidi, is it possible to show a binary decision tree when any reduction rules are not applied (via dot for example) using this jdd library? Can I prevent that any reduction rules will be adopted? Many thanks for your reply! Anna Hofstaetter

Comments (3)

  1. Arash Vahidi (private) repo owner

    All internal data structures require that the tree is fully reduced and all algorithms rely on that. So JDD does not natively support what you want

    Given a reduced BDD you can still traverse the full tree and visit all nodes, for example by exhaustive search and calls to BDD.member(), but you have to write the code yourself.

  2. Log in to comment