Library PAutomata.PGM.Comp



Require Import Bool.

Section COMPARE_DEF.

Fixpoint less (n1 : nat) : natbool :=
  match n1 with
  | Ofun n2 : natmatch n2 with
                         | Ofalse
                         | S n2'true
                         end
  | S n1'
      fun n2 : natmatch n2 with
                      | Ofalse
                      | S n2'less n1' n2'
                      end
  end.

End COMPARE_DEF.