File: log_impargs_record.v

package info (click to toggle)
coq-hierarchy-builder 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,988 kB
  • sloc: makefile: 109
file content (15 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
From HB Require Import structures.

Set Implicit Arguments.

#[log] HB.mixin
Record A T := {
  a : T;
  f : T -> T;
  p : forall x : T, f x = x -> True;
  q : forall h : f a = a, p _ h = p _ h;
}.

HB.structure Definition S := { T of A T }.

About A.p.