File tree Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ solver_factoryt::get_incremental_smt2(std::string solver_command)
380
380
? nullptr
381
381
: open_outfile_and_check (outfile_arg, message_handler, " --outfile" );
382
382
solver_process = util_make_unique<smt_incremental_dry_run_solvert>(
383
- message_handler, on_std_out ? std::cout : *outfile, std::move (outfile));
383
+ on_std_out ? std::cout : *outfile, std::move (outfile));
384
384
}
385
385
else
386
386
{
Original file line number Diff line number Diff line change @@ -81,12 +81,9 @@ smt_responset smt_piped_solver_processt::receive_response(
81
81
}
82
82
83
83
smt_incremental_dry_run_solvert::smt_incremental_dry_run_solvert (
84
- message_handlert &message_handler,
85
84
std::ostream &out_stream,
86
85
std::unique_ptr<std::ostream> file_stream)
87
- : file_stream(std::move(file_stream)),
88
- out_stream(out_stream),
89
- log(message_handler)
86
+ : file_stream(std::move(file_stream)), out_stream(out_stream)
90
87
{
91
88
}
92
89
Original file line number Diff line number Diff line change @@ -72,15 +72,12 @@ class smt_piped_solver_processt : public smt_base_solver_processt
72
72
class smt_incremental_dry_run_solvert : public smt_base_solver_processt
73
73
{
74
74
public:
75
- // / \param message_handler:
76
- // / The messaging system to be used for logging purposes.
77
75
// / \param out_stream:
78
76
// / Reference to the stream to print the SMT formula.
79
77
// / \param file_stream:
80
78
// / Pointer to the file stream to print the SMT formula into. `nullptr` if
81
79
// / output is to `std::cout`.
82
80
smt_incremental_dry_run_solvert (
83
- message_handlert &message_handler,
84
81
std::ostream &out_stream,
85
82
std::unique_ptr<std::ostream> file_stream);
86
83
@@ -101,8 +98,6 @@ class smt_incremental_dry_run_solvert : public smt_base_solver_processt
101
98
std::unique_ptr<std::ostream> file_stream;
102
99
// / The output stream reference to print the SMT formula to.
103
100
std::ostream &out_stream;
104
- // / For debug printing.
105
- messaget log;
106
101
107
102
// / Description of the current solver
108
103
const std::string desc = " SMT2 incremental dry-run" ;
You can’t perform that action at this time.
0 commit comments