mirror of
https://github.com/Z3Prover/z3
synced 2026-02-14 12:51:48 +00:00
Refactor and fix uninitialized variables and improve function consistency across multiple modules
This commit is contained in:
parent
499ed5d844
commit
eb8c63080a
17 changed files with 60 additions and 25 deletions
|
|
@ -452,7 +452,7 @@ public:
|
|||
var = vars.back();
|
||||
vars.pop_back();
|
||||
mbp::project_plugin* p = get_plugin(var);
|
||||
if (p && (*p)(model, var, vars, fmls)) {
|
||||
if (p && p->project1(model, var, vars, fmls)) {
|
||||
progress = true;
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue