[sledge] Classify Eq and Dq exps as Interpreted

Summary:
Eq and Dq expressions are interpreted by Equality and Exp, rather than
being considered uninterpreted functions. Classifying them as
interpreted results in stronger Equality normalization.

Reviewed By: mbouaziz

Differential Revision: D14495817

fbshipit-source-id: 44bb376c0
master
Josh Berdine 6 years ago committed by Facebook Github Bot
parent 3a01feb9ba
commit 7595b05f39

@ -1290,7 +1290,7 @@ let rec is_constant e =
| _ -> true | _ -> true
let classify = function let classify = function
| Add _ | Mul _ -> `Interpreted | Add _ | Mul _ | App {op= Eq | Dq | App {op= Eq | Dq}} -> `Interpreted
| App _ -> `Uninterpreted | App _ -> `Uninterpreted
| _ -> `Atomic | _ -> `Atomic

Loading…
Cancel
Save