[enhancement] Handle Equations
#153
Labels
enhancement
help wanted
minimize more
Issues related to getting the minimizer to do more minimization
It would be nice to handle the following constructs:
Equations prog_discr (t1 t2 : term) : Prop := prog_discr (tApp _ _) (tApp _ _) := False ; prog_discr (tConst _ _) (tConst _ _) := False ; prog_discr (tLambda _ _ _) (tLambda _ _ _) := False ; prog_discr (tProd _ _ _) (tProd _ _ _) := False ; prog_discr (tCase _ _ _ _) (tCase _ _ _ _) := False ; prog_discr (tProj _ _) (tProj _ _) := False ; prog_discr (tFix _ _) (tFix _ _) := False ; prog_discr (tCoFix _ _) (tCoFix _ _) := False ; prog_discr _ _ := True.
The text was updated successfully, but these errors were encountered: