CBMC
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
bdd.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module: Binary Decision Diagrams
4
5Author: Romain Brenguier, romain.brenguier@diffblue.com
6
7\*******************************************************************/
8
11
12#ifndef CPROVER_SOLVERS_BDD_BDD_H
13#define CPROVER_SOLVERS_BDD_BDD_H
14
15#ifdef HAVE_CUDD
16#include "bdd_cudd.h"
17#else
18#include "bdd_miniBDD.h"
19#endif // HAVE_CUDD
20
21#endif // CPROVER_SOLVERS_BDD_BDD_H
Interface to Cudd BDD functions that are used in CBMC BDD functions should only be accessed through t...
Interface to miniBDD functions that are used in CBMC BDD functions should only be accessed through th...