File: fin.v

package info (click to toggle)
coq-stdpp 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,724 kB
  • sloc: makefile: 53; sh: 35; sed: 1
file content (6 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
From stdpp Require Import fin.

Definition f n m (p : fin n) := m < p.

Lemma test : f 47 13 32.
Proof. vm_compute. lia. Qed.