mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
disable nested mul
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c643672e9f
commit
059ccd67bb
1 changed files with 1 additions and 1 deletions
|
@ -850,7 +850,7 @@ namespace sls {
|
|||
muls.append(to_app(e)->get_num_args(), to_app(e)->get_args());
|
||||
for (unsigned j = 0; j < muls.size(); ++j) {
|
||||
expr* arg = muls[j];
|
||||
if (a.is_mul(arg)) {
|
||||
if (false && a.is_mul(arg)) {
|
||||
//verbose_stream() << "nested " << mk_bounded_pp(arg, m) << "\n";
|
||||
muls.append(to_app(arg)->get_num_args(), to_app(arg)->get_args());
|
||||
muls[j] = muls.back();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue