fix: remove bad condition
Recall that `processAssignmentFOApprox` will unfold `v` if possible.
This commit is contained in:
parent
482e078b92
commit
bce4912505
1 changed files with 1 additions and 1 deletions
|
|
@ -616,7 +616,7 @@ private partial def processAssignmentAux (mvar : Expr) (mvarDecl : MetavarDecl)
|
|||
else
|
||||
pure false;
|
||||
let useFOApprox : Unit → MetaM Bool := fun _ =>
|
||||
if cfg.foApprox && v.isApp then
|
||||
if cfg.foApprox then
|
||||
condM (processAssignmentFOApprox mvar args v)
|
||||
(pure true)
|
||||
(useConstApprox ())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue