File: fin.v

package info (click to toggle)
coq-stdpp 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,696 kB
  • sloc: makefile: 52; sh: 35; sed: 1
file content (6 lines) | stat: -rw-r--r-- 126 bytes parent folder | download
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.