Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PropExt.lp
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,15 @@ end;

// Simplifications on Equalities

opaque symbol =_idem t (x : τ t) : π ((x = x) = ⊤) ≔
opaque symbol =_refl t (x : τ t) : π ((x = x) = ⊤) ≔
begin
assume t x;
refine propExt (x = x) ⊤ _ _
{assume h1; refine ⊤ᵢ}
{assume h1; refine eq_refl x}
end;

opaque symbol ¬=_idem t (x : τ t) : π (¬ (x = x) = ⊥) ≔
opaque symbol ¬=_irrefl t (x : τ t) : π (¬ (x = x) = ⊥) ≔
begin
assume t x;
refine propExt (¬ (x = x)) ⊥ _ _
Expand Down Expand Up @@ -436,7 +436,7 @@ end;

// Simplifications on Implication

opaque symbol ⇒_idem x : π ((x ⇒ x) = ⊤) ≔
opaque symbol ⇒_refl x : π ((x ⇒ x) = ⊤) ≔
begin
assume x;
refine propExt (x ⇒ x) ⊤ _ _
Expand Down Expand Up @@ -478,7 +478,7 @@ end;

// Simplifications on Bi-Implication

opaque symbol ⇔_idem x : π ((x ⇔ x) = ⊤) ≔
opaque symbol ⇔_refl x : π ((x ⇔ x) = ⊤) ≔
begin
assume x;
refine propExt (x ⇔ x) ⊤ _ _
Expand Down
Loading