Skip to content

Commit 54d0150

Browse files
author
Daniel Kroening
committed
expr_listt
1 parent 2fddc29 commit 54d0150

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/hw-cbmc/hw_cbmc_parse_options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Function: hw_cbmc_parse_optionst::get_modules
172172
173173
\*******************************************************************/
174174

175-
int hw_cbmc_parse_optionst::get_modules(expr_listt &bmc_constraints)
175+
int hw_cbmc_parse_optionst::get_modules(std::list<exprt> &bmc_constraints)
176176
{
177177
//
178178
// unwinding of transition systems

src/hw-cbmc/map_vars.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void instantiate_symbol(exprt &expr, unsigned timeframe)
6262
class map_varst:public messaget
6363
{
6464
public:
65-
map_varst(symbol_tablet &_symbol_table, expr_listt &_constraints,
65+
map_varst(symbol_tablet &_symbol_table, std::list<exprt> &_constraints,
6666
message_handlert &_message, unsigned _no_timeframes):
6767
messaget(_message),
6868
symbol_table(_symbol_table), constraints(_constraints),
@@ -73,7 +73,7 @@ class map_varst:public messaget
7373

7474
protected:
7575
symbol_tablet &symbol_table;
76-
expr_listt &constraints;
76+
std::list<exprt> &constraints;
7777
unsigned no_timeframes;
7878
std::set<irep_idt> top_level_inputs;
7979

@@ -769,7 +769,7 @@ Function: map_vars
769769
void map_vars(
770770
symbol_tablet &symbol_table,
771771
const irep_idt &module,
772-
expr_listt &constraints,
772+
std::list<exprt> &constraints,
773773
message_handlert &message,
774774
unsigned no_timeframes)
775775
{

src/hw-cbmc/map_vars.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Author: Daniel Kroening, [email protected]
1515
void map_vars(
1616
symbol_tablet &symbol_table,
1717
const irep_idt &module,
18-
expr_listt &constraints,
18+
std::list<exprt> &constraints,
1919
message_handlert &message,
2020
unsigned no_timeframes);
2121

0 commit comments

Comments
 (0)