Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
personoj
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
koizel
personoj
Commits
cd69b678
Commit
cd69b678
authored
5 years ago
by
gabrielhdt
Browse files
Options
Downloads
Patches
Plain Diff
fixed true, if def, xor and thm
parent
708a4d82
Loading
Loading
Loading
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
prelude/cert_f/booleans.lp
+3
-3
3 additions, 3 deletions
prelude/cert_f/booleans.lp
prelude/cert_f/if_def.lp
+6
-0
6 additions, 0 deletions
prelude/cert_f/if_def.lp
prelude/cert_f/xor_def.lp
+18
-0
18 additions, 0 deletions
prelude/cert_f/xor_def.lp
with
27 additions
and
3 deletions
prelude/cert_f/booleans.lp
+
3
−
3
View file @
cd69b678
require open encodings.cert_f
definition bool ≔ Prop
definition false ≔ @prod Type Prop uProp (λ x
: Term uProp
, x)
definition true ≔
Term
false
⇒ Term
false
definition bool ≔
u
Prop
definition false ≔ @prod Type Prop uProp (λ x, x)
definition true ≔
@prod Prop Prop
false
(λ _,
false
)
definition bnot (P: Term uProp) ≔ @prod Prop Prop P (λ _, false)
This diff is collapsed.
Click to expand it.
prelude/cert_f/if_def.lp
0 → 100644
+
6
−
0
View file @
cd69b678
require open encodings.cert_f prelude.cert_f.booleans
symbol if {T: Term uType} : Term uProp ⇒ Term T ⇒ Term T ⇒ Term T
rule if true &t _ → &t
and if false _ &f → &f
This diff is collapsed.
Click to expand it.
prelude/cert_f/xor_def.lp
0 → 100644
+
18
−
0
View file @
cd69b678
require open encodings.cert_f prelude.cert_f.booleans prelude.cert_f.equalities
prelude.cert_f.notequal prelude.cert_f.if_def
// FIXME explicitness required
definition xor (a b: Univ Prop) ≔ @neq uProp a b
type ∀ (a b: Univ Prop), Term (xor a b)
type λ (a: Term uProp), @if uProp a a a
type ∀ a : Term uProp, Term (@if uProp a a a)
// FIXME explicitness required
theorem xor_def: ∀ (a b: Univ Prop),
Term (@eq uProp (xor a b) (@if uProp a (bnot b) b))
proof
assume a b
simpl
admit
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment