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.
 
 
 
 
dehnert 07fbff7a07 Started refactoring bit vector class. 12 years ago
..
doc Added a CMakeLists.txt for CUDD 12 years ago
C17.blif Added a CMakeLists.txt for CUDD 12 years ago
C17.out Added a CMakeLists.txt for CUDD 12 years ago
C880.blif Added a CMakeLists.txt for CUDD 12 years ago
C880.out Added a CMakeLists.txt for CUDD 12 years ago
Makefile Added a CMakeLists.txt for CUDD 12 years ago
README Added a CMakeLists.txt for CUDD 12 years ago
bnet.c Added a CMakeLists.txt for CUDD 12 years ago
bnet.h Added a CMakeLists.txt for CUDD 12 years ago
chkMterm.c Added a CMakeLists.txt for CUDD 12 years ago
main.c Added a CMakeLists.txt for CUDD 12 years ago
mult32a.blif Added a CMakeLists.txt for CUDD 12 years ago
mult32a.out Added a CMakeLists.txt for CUDD 12 years ago
nanotrav.1 Added a CMakeLists.txt for CUDD 12 years ago
ntr.c Added a CMakeLists.txt for CUDD 12 years ago
ntr.h Added a CMakeLists.txt for CUDD 12 years ago
ntrBddTest.c Added a CMakeLists.txt for CUDD 12 years ago
ntrHeap.c Added a CMakeLists.txt for CUDD 12 years ago
ntrMflow.c Added a CMakeLists.txt for CUDD 12 years ago
ntrShort.c Added a CMakeLists.txt for CUDD 12 years ago
ntrZddTest.c Added a CMakeLists.txt for CUDD 12 years ago
rcn25.blif Added a CMakeLists.txt for CUDD 12 years ago
rcn25.out Added a CMakeLists.txt for CUDD 12 years ago
s27.blif Added a CMakeLists.txt for CUDD 12 years ago
s27.out Added a CMakeLists.txt for CUDD 12 years ago
tst.sh Added a CMakeLists.txt for CUDD 12 years ago
ucbqsort.c Fixed a stray void* to char* conversion (still trying to please Clang) 12 years ago
ucbqsort.h Patched types for the strange version of qsort included in CUDD 12 years ago

README

$Id: README,v 1.8 1997/01/23 07:33:22 fabio Exp fabio $

WHAT IS NANOTRAV
================

This directory contains nanotrav, a simple reachability analysis program
based on the CUDD package. Nanotrav uses a very naive approach and is
only included to provide a sanity check for the installation of the
CUDD package.

Nanotrav reads a circuit written in a small subset of blif. This
format is described in the comments in bnet.c. Nanotrav then creates
BDDs for the primary outputs and the next state functions (if any) of
the circuit.

If, passed the -trav option, nanotrav builds a BDD for the
characteristic function of the transition relation of the graph. It then
builds a BDD for the initial state(s), and performs reachability
analysis. Reachability analysys is performed with either the method
known as "monolithic transition relation method," whose main virtue is
simplicity, or with a unsophisticated partitioned transition relation
method.

Once it has completed reachability analysis, nanotrav prints results and
exits. The amount of information printed, as well as several other
features are controlled by the options. For a complete list of the
options, consult the man page. Here, we only mention that the options allow
the user of nanotrav to select among different reordering options.

TEST CIRCUITS
=============

Five test circuits are contained in this directory: C17.blif,
C880.blif, s27.blif, mult32a.blif, and rcn25.blif. The first two are
combinational, while the last three are sequential. The results or
running

nanotrav -p 1 -cover C17.blif > C17.out
nanotrav -p 1 -ordering dfs -autodyn -automethod sifting -reordering sifting -drop C880.blif > C880.out
nanotrav -p 1 -trav s27.blif > s27.out
nanotrav -p 1 -autodyn -reordering sifting -trav mult32a.blif > mult32a.out
nanotrav -p 1 -envelope rcn25.blif > rcn25.out

are also included. They have been obtained on a 200 MHz P6-based
machine with 128MB of memory. These tests can be run with the shell
script tst.sh. Notice that rcn25 requires approximately 500 sec. All
other tests run in a few seconds.