spot/buddy
philipp 540b31dbd7 [buddy] Improve bdd_have_common_assignment
* src/bddop.c: Improve here
* src/bddtest.cxx: Tests here
2021-11-05 09:23:57 +01:00
..
doc Remove all cvsignore files. 2015-04-24 13:57:56 +02:00
examples [buddy] fix a spurious failure 2021-11-04 23:19:31 +01:00
m4 [buddy] update obsolete autoconf constructs 2021-01-14 15:15:39 +01:00
src [buddy] Improve bdd_have_common_assignment 2021-11-05 09:23:57 +01:00
tools Remove all cvsignore files. 2015-04-24 13:57:56 +02:00
.gitignore Add .gitignore files 2008-03-14 16:59:32 +01:00
ChangeLog [buddy] rename ChangeLog 2017-05-04 13:32:52 +02:00
ChangeLog.1 [buddy] typo coma -> comma 2021-06-11 11:47:34 +02:00
CHANGES Initial revision 2003-05-05 10:57:53 +00:00
configure.ac [buddy] update obsolete autoconf constructs 2021-01-14 15:15:39 +01:00
INSTALL * configure.ac, Makefile.am, src/Makefile.am, doc/Makefile.am, 2003-05-05 13:44:49 +00:00
Makefile.am [buddy] do not use ACLOCAL_AMFLAGS anymore 2018-03-09 20:24:37 +01:00
README Merge BuDDy 2.3. 2004-06-28 15:22:11 +00:00

==========================================================================
                              *** BuDDy ***
                         Binary Decision Diagrams
                           Library Package v2.3a
--------------------------------------------------------------------------
               Copyright (C) 1996-2002 by Jorn Lind-Nielsen
                            All rights reserved

    Permission is hereby granted, without written agreement and without
    license or royalty fees, to use, reproduce, prepare derivative
    works, distribute, and display this software and its documentation
    for any purpose, provided that (1) the above copyright notice and
    the following two paragraphs appear in all copies of the source code
    and (2) redistributions, including without limitation binaries,
    reproduce these notices in the supporting documentation. Substantial
    modifications to this software may be copyrighted by their authors
    and need not follow the licensing terms described here, provided
    that the new terms are clearly indicated in all files where they apply.

    IN NO EVENT SHALL JORN LIND-NIELSEN, OR DISTRIBUTORS OF THIS
    SOFTWARE BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
    INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
    SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUTHORS OR ANY OF THE
    ABOVE PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

    JORN LIND-NIELSEN SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
    BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
    FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
    ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO
    OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
    MODIFICATIONS.
==========================================================================


---------------------------------------------------------------------
--- PREFACE  --------------------------------------------------------
---------------------------------------------------------------------

BuDDy was originally developed by Jorn Lind-Nielsen as a part of his
Phd thesis.
After using BuDDy as a BDD library for long time ( while getting some
support from Jorn through Email ), I have been suggested by Jorn to take
ownership of the project and move it to SourceForge.
I invite all users who are interested to participate in the development
to contact me. ( I always have desired tasks / features awaiting... )
I hope that BuDDy will prosper under my management.

Haim Cohen
haimcohen2002@hotmail.com

---------------------------------------------------------------------
--- REQUIREMENTS ----------------------------------------------------
---------------------------------------------------------------------

* A (not too old) C++ compiler. I use g++ 3.3.3
* A machine that supports 32 bit integers


---------------------------------------------------------------------
--- INSTALLING ------------------------------------------------------
---------------------------------------------------------------------

The following commands should build and install the library.

  ./configure
  make
  make install

`./configure' accepts many arguments to tune your installation.
The following options are noteworthy:

  --includedir=/somewhere/include
    Specify where header files will be installed.

  --libdir=/somewhere/lib
    Specify where libraries will be installed.

  --disable-shared
    Do not build the shared library for BuDDy.

  --disable-static
    Do not build the static library for BuDDy.

  --enable-swap-count
    Count number of fundamental variable swaps (for debugging)

  --enable-cache-stats
    Gather statistical information about operator and unique node
    caching (for debugging)

Run `./configure --help' for a complete listing, and see
the INSTALL file for generic intrustions.

Run `make check' to build the examples.


---------------------------------------------------------------------
--- USING -----------------------------------------------------------
---------------------------------------------------------------------

Assuming that the files "bdd.h" and "libbdd.a" are in directories
"/usr/local/include" and "/usr/local/lib" then the compile command
could be:

 g++ -I/usr/local/include myfile.cc -o myfile -L/usr/local/lib -lbdd

Your machine may be setup to use the above directories automatically,
so you might be able to do:

 g++ myfile.cc -o myfile -lbdd


---------------------------------------------------------------------
--- FILES -----------------------------------------------------------
---------------------------------------------------------------------

src:           All files needed for the BuDDy package.
examples:      Example files
  fdd:         An example of use of the FDD interface.
  bddcalc:     An example of a BDD calculator. Uses reordering.
  adder:       Construction of a N-bit adder. Uses reordering.
  milner:      A calculation of the reachable state space for Milner's
               scheduler. C++.
  cmilner:     As above but purely in ANSI-C.
  queen:       Solution to the N-queen chess problem.
  solitare:    Solution to a solitare game.
  money:       Solution to the send-more-money problem (bvec demo).
  bddtest :    Some internal tests.
doc:           Documentation.
  buddy.ps:    Package documentation.
  bddnotes.ps: BDD introduction notes.
tools:         Tools used during the build.
m4:            A couple of macros used to build ./configure.