Skip to content

Commit 88ff3a4

Browse files
fixup! New implementation of guards using BDDs
1 parent 46406bc commit 88ff3a4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/util/guard.h

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Author: Daniel Kroening, [email protected]
1212
#ifndef CPROVER_UTIL_GUARD_H
1313
#define CPROVER_UTIL_GUARD_H
1414

15+
#ifdef HAS_CUDD
16+
#include "guard_bdd.h"
17+
#else
18+
1519
#include <iosfwd>
1620

1721
#include "std_expr.h"
@@ -72,4 +76,5 @@ class guardt
7276
exprt expr;
7377
};
7478

79+
#endif // HAS_CUDD
7580
#endif // CPROVER_UTIL_GUARD_H

0 commit comments

Comments
 (0)