Skip to content

Commit a2d17ec

Browse files
committed
rename class instantiate_var_mapt to netlist_boolbvt
1 parent a4acc1c commit a2d17ec

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/trans-netlist/instantiate_netlist.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void instantiate_constraint(
4141
const namespacet &ns,
4242
message_handlert &message_handler)
4343
{
44-
instantiate_var_mapt i(ns, solver, message_handler, var_map);
44+
netlist_boolbvt i(ns, solver, message_handler, var_map);
4545

4646
try
4747
{
@@ -80,7 +80,7 @@ literalt instantiate_convert(
8080
const namespacet &ns,
8181
message_handlert &message_handler)
8282
{
83-
instantiate_var_mapt i(ns, solver, message_handler, var_map);
83+
netlist_boolbvt i(ns, solver, message_handler, var_map);
8484

8585
try
8686
{
@@ -120,7 +120,7 @@ void instantiate_convert(
120120
message_handlert &message_handler,
121121
bvt &bv)
122122
{
123-
instantiate_var_mapt i(ns, solver, message_handler, var_map);
123+
netlist_boolbvt i(ns, solver, message_handler, var_map);
124124

125125
try
126126
{

src/trans-netlist/netlist_boolbv.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Daniel Kroening, [email protected]
1313

1414
/*******************************************************************\
1515
16-
Function: instantiate_var_mapt::convert_bool
16+
Function: netlist_boolbvt::convert_bool
1717
1818
Inputs:
1919
@@ -23,7 +23,7 @@ Function: instantiate_var_mapt::convert_bool
2323
2424
\*******************************************************************/
2525

26-
literalt instantiate_var_mapt::convert_bool(const exprt &expr)
26+
literalt netlist_boolbvt::convert_bool(const exprt &expr)
2727
{
2828
if(expr.id() == ID_symbol || expr.id() == ID_next_symbol)
2929
{
@@ -53,7 +53,7 @@ literalt instantiate_var_mapt::convert_bool(const exprt &expr)
5353

5454
/*******************************************************************\
5555
56-
Function: instantiate_var_mapt::convert_bitvector
56+
Function: netlist_boolbvt::convert_bitvector
5757
5858
Inputs:
5959
@@ -63,7 +63,7 @@ Function: instantiate_var_mapt::convert_bitvector
6363
6464
\*******************************************************************/
6565

66-
bvt instantiate_var_mapt::convert_bitvector(const exprt &expr)
66+
bvt netlist_boolbvt::convert_bitvector(const exprt &expr)
6767
{
6868
if(expr.id() == ID_symbol || expr.id() == ID_next_symbol)
6969
{
@@ -95,7 +95,7 @@ bvt instantiate_var_mapt::convert_bitvector(const exprt &expr)
9595

9696
/*******************************************************************\
9797
98-
Function: instantiate_var_mapt::get_literal
98+
Function: netlist_boolbvt::get_literal
9999
100100
Inputs:
101101
@@ -106,7 +106,7 @@ Function: instantiate_var_mapt::get_literal
106106
\*******************************************************************/
107107

108108
literalt
109-
instantiate_var_mapt::get_literal(const std::string &symbol, const unsigned bit)
109+
netlist_boolbvt::get_literal(const std::string &symbol, const unsigned bit)
110110
{
111111
return var_map.get_current(symbol, bit);
112112
}

src/trans-netlist/netlist_boolbv.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ Author: Daniel Kroening, [email protected]
1515

1616
/*******************************************************************\
1717
18-
Class: instantiate_var_mapt
18+
Class: netlist_boolbvt
1919
2020
Purpose:
2121
2222
\*******************************************************************/
2323

24-
class instantiate_var_mapt : public boolbvt
24+
class netlist_boolbvt : public boolbvt
2525
{
2626
public:
27-
instantiate_var_mapt(
27+
netlist_boolbvt(
2828
const namespacet &_ns,
2929
propt &solver,
3030
message_handlert &message_handler,

0 commit comments

Comments
 (0)