chore: use Array instead of PArray in elimDeadBranches state (#9220)

This is alway used linearly.
This commit is contained in:
Cameron Zwarich 2025-07-06 14:31:47 -07:00 committed by GitHub
parent 53d4139cf1
commit ff5d96096a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -302,7 +302,7 @@ structure InterpState where
`Value`s of functions in the `InterpContext` use during computation of
the fixpoint. Afterwards they are stored into the `Environment`.
-/
funVals : PArray Value
funVals : Array Value
/--
The monad which powers the abstract interpreter.