From Equations Require Import Equations.

Fixpoint acc_nat (n : nat) : Set :=
  match n with
  | 0 ⇒ unify
  | S nP n × acc_nat n
  end.
| acc_nat : (x :

This page has been generated by coqdoc