The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

36 lines
1.6 KiB

4 weeks ago
  1. $Id: README,v 1.8 1997/01/23 07:33:22 fabio Exp fabio $
  2. WHAT IS NANOTRAV
  3. ================
  4. This directory contains nanotrav, a simple reachability analysis program
  5. based on the CUDD package. Nanotrav uses a very naive approach and is
  6. only included to provide a sanity check for the installation of the
  7. CUDD package.
  8. Nanotrav reads a circuit written in a small subset of blif. This
  9. format is described in the comments in bnet.c. Nanotrav then creates
  10. BDDs for the primary outputs and the next state functions (if any) of
  11. the circuit.
  12. If, passed the -trav option, nanotrav builds a BDD for the
  13. characteristic function of the transition relation of the graph. It then
  14. builds a BDD for the initial state(s), and performs reachability
  15. analysis. Reachability analysys is performed with either the method
  16. known as "monolithic transition relation method," whose main virtue is
  17. simplicity, or with an unsophisticated partitioned transition relation
  18. method.
  19. Once it has completed reachability analysis, nanotrav prints results and
  20. exits. The amount of information printed, as well as several other
  21. features are controlled by the options. For a complete list of the
  22. options, consult the man page. Here, we only mention that the options allow
  23. the user of nanotrav to select among different reordering options.
  24. TEST CIRCUITS
  25. =============
  26. Twelve test circuits are contained in this directory. The results or running
  27. nanotrav on them with various options are also included. These tests are run
  28. as part of "make check." Notice that rcn25 requires approximately 30 s. All
  29. other tests take much less.