Skip to content

Commit 08698cc

Browse files
author
Daniel Kroening
authored
Merge pull request #2681 from diffblue/remove-aig
remove AIGs
2 parents 4291232 + d42020b commit 08698cc

File tree

9 files changed

+1
-1079
lines changed

9 files changed

+1
-1079
lines changed

src/cbmc/cbmc_parse_options.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -309,9 +309,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
309309
"max-node-refinement",
310310
cmdline.get_value("max-node-refinement"));
311311

312-
if(cmdline.isset("aig"))
313-
options.set_option("aig", true);
314-
315312
// SMT Options
316313

317314
if(cmdline.isset("smt1"))

src/cbmc/cbmc_parse_options.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class optionst;
5252
"(string-printable)" \
5353
"(string-max-length):" \
5454
"(string-max-input-length):" \
55-
"(aig)(16)(32)(64)(LP64)(ILP64)(LLP64)(ILP32)(LP32)" \
55+
"(16)(32)(64)(LP64)(ILP64)(LLP64)(ILP32)(LP32)" \
5656
"(little-endian)(big-endian)" \
5757
OPT_SHOW_GOTO_FUNCTIONS \
5858
OPT_SHOW_PROPERTIES \

src/cbmc/cbmc_solvers.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Author: Daniel Kroening, [email protected]
2323
#include <solvers/refinement/bv_refinement.h>
2424
#include <solvers/refinement/string_refinement.h>
2525
#include <solvers/smt2/smt2_dec.h>
26-
#include <solvers/prop/aig_prop.h>
2726
#include <solvers/sat/dimacs_cnf.h>
2827

2928
#include "bv_cbmc.h"

src/cbmc/cbmc_solvers.h

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Author: Daniel Kroening, [email protected]
2323
#include <solvers/prop/prop_conv.h>
2424
#include <solvers/sat/cnf.h>
2525
#include <solvers/sat/satcheck.h>
26-
#include <solvers/prop/aig_prop.h>
2726
#include <solvers/smt2/smt2_dec.h>
2827
#include <goto-symex/symex_target_equation.h>
2928

src/solvers/Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,6 @@ SRC = $(BOOLEFORCE_SRC) \
146146
floatbv/float_approximation.cpp \
147147
lowering/popcount.cpp \
148148
miniBDD/miniBDD.cpp \
149-
prop/aig.cpp \
150-
prop/aig_prop.cpp \
151149
prop/bdd_expr.cpp \
152150
prop/cover_goals.cpp \
153151
prop/literal.cpp \

src/solvers/prop/aig.cpp

-183
This file was deleted.

src/solvers/prop/aig.h

-157
This file was deleted.

0 commit comments

Comments
 (0)