Skip to content

Commit

Permalink
Chore: rename variables in evalApp
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecsFerra committed Sep 30, 2024
1 parent 6ec234a commit c3972c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Language/Fixpoint/Solver/PLE.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1065,11 +1065,11 @@ evalApp _ ctx e0 es _
st { evNewEqualities = S.insert (eApps e0 es, eApps rewrite es) (evNewEqualities st) }
return (Just $ eApps rewrite es, expand)

evalApp _γ _ctx _e0 _es _
evalApp _ ctx e0 es _
= do
let deANFed = deANF _ctx _e0
if dropECst deANFed /= dropECst _e0 then do
return (Just $ eApps deANFed _es, expand)
let deANFed = deANF ctx e0
if dropECst deANFed /= dropECst e0 then do
return (Just $ eApps deANFed es, expand)
else do
return (Nothing, noExpand)

Expand Down

0 comments on commit c3972c4

Please sign in to comment.