Skip to content
Snippets Groups Projects
Commit 4a339148 authored by gabrielhdt's avatar gabrielhdt
Browse files

renaming schemes

parent 5940fab9
No related branches found
No related tags found
No related merge requests found
......@@ -13,18 +13,18 @@ set declared "∀B"
symbol SchemeK: TYPE
symbol ϕ: SchemeK → TYPE
symbol schemeK: Kind → SchemeK
rule ϕ (schemeK $X) ↪ θ $X
symbol scheme_k: Kind → SchemeK
rule ϕ (scheme_k $X) ↪ θ $X
constant symbol ∀K: (Set → SchemeK) → SchemeK
rule ϕ (∀K $e) ↪ Πt: Set, ϕ ($e t)
symbol Scheme: TYPE
symbol χ: Scheme → TYPE
symbol scheme: Set → Scheme
rule χ (scheme $X) ↪ η $X
symbol SchemeS: TYPE
symbol χ: SchemeS → TYPE
symbol scheme_s: Set → SchemeS
rule χ (scheme_s $X) ↪ η $X
constant symbol ∀S: (Set → Scheme) → Scheme
constant symbol ∀S: (Set → SchemeS) → SchemeS
rule χ (∀S $e) ↪ Πt: Set, χ ($e t)
constant symbol ∀B: (Set → Bool) → Bool
......
......@@ -2,4 +2,4 @@ require open personoj.encodings.lhol
require open personoj.encodings.pvs_cert
require open personoj.encodings.prenex
symbol eq: χ (∀S (λT: θ {|set|}, scheme (T ~> T ~> bool)))
symbol eq: χ (∀S (λT: θ {|set|}, scheme_s (T ~> T ~> bool)))
......@@ -60,7 +60,7 @@ admit
//
// Defined types
//
definition pred: ϕ (∀K (λ_, schemeK {|set|})) ≔ λt, t ~> bool
definition pred: ϕ (∀K (λ_, scheme_k {|set|})) ≔ λt, t ~> bool
definition PRED ≔ pred
definition predicate ≔ pred
definition PREDICATE ≔ pred
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment