We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b94b12 commit 2716ed8Copy full SHA for 2716ed8
saw-core/src/SAWCore/Term/Functor.hs
@@ -523,6 +523,7 @@ alphaEquiv = term
523
termf (Pi _ t1 u1) (Pi _ t2 u2) = term t1 t2 && term u1 u2
524
termf (LocalVar i1) (LocalVar i2) = i1 == i2
525
termf (Constant x1) (Constant x2) = x1 == x2
526
+ termf (Variable x1) (Variable x2) = x1 == x2
527
termf _ _ = False
528
529
ftermf :: FlatTermF Term -> FlatTermF Term -> Bool
0 commit comments