You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Chris Novakovic a712065d9a Makefile: replace hardcoded directory names with PRISM_*_DIR 7 years ago
..
DebugJDD.java DebugJDD: Inhibit leak checks if there was a fatal error during the run 8 years ago
JDD.cc (native) switch includes from .h to C++ header wrappers 9 years ago
JDD.java JDD, prism.StateValues: find max finite value 9 years ago
JDDNode.java DebugJDD: Improved handling of JDDNode.getThen(), JDDNode.getElse(); allow copy() on such nodes 10 years ago
JDDTest.java Updated email addresses and affiliations in copyright info. 19 years ago
JDDVars.java JDDVars: add method allZero() for obtaining a cubeset with all the variables negated 9 years ago
JDDVectorConsumer.java Updated email addresses and affiliations in copyright info. 19 years ago
Makefile Makefile: replace hardcoded directory names with PRISM_*_DIR 7 years ago
README PRISM trunk layout rearrangement. 20 years ago
SanityJDD.java SanityJDD: allow check methods to be called without having to globally enable sanity checks 10 years ago
package-info.java Improved documentation (JavaDoc mostly). 15 years ago

README

JDD
===

To add new functions:
---------------------

- Add Java wrapper method to JDD.java
- Add native method prototype to JDD.java
- javac jdd/JDD.java
- javah -jni jdd.JDD -o jdd/JDD.h
- Add C++ wrapper to jdd.cc (get prototype from jdd/JDD.h)
- cd jdd
- make clean
- cd ..
- make