Guest User

Untitled

a guest
Mar 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class C {α:ℕ → Type} :=
  2. (myf:α 1 → α 1 → α 1)
  3. (cx cy:α 1)
  4.  
  5. variable {α:ℕ → Type}
  6. variable [s1:@C α]
  7.  
  8. include s1
  9. def f1 := C.myf (C.cx α) (C.cy α)
  10. def f2 := f1 /- don't know how to synthesize placeholder
  11. context:
  12. α : ℕ → Type,
  13. s1 : C
  14. ⊢ ℕ → Type
  15. f1 : Π {α : ℕ → Type} [s1 : C], α 1 -/
  16. omit s1
Add Comment
Please, Sign In to add comment