File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ open import Function.Base using (_∘_; id)
1919open import Function.Indexed.Relation.Binary.Equality using (≡-setoid)
2020open import Level using (Level; _⊔_; suc; Lift; lift; lower)
2121open import Relation.Nullary.Negation
22- using (¬_; ¬¬-Monad; ¬¬-map; negated-stable)
22+ using (¬_; ¬¬-Monad; ¬¬-map; negated-stable; contradiction )
2323open import Relation.Binary.Core using (Rel)
2424open import Relation.Binary.Bundles using (Setoid)
2525import Relation.Binary.Construct.Always as Always using (setoid)
@@ -123,7 +123,7 @@ private
123123 ⟦ F ⟧ (¬ ¬ P) → ¬ ¬ ⟦ F ⟧ P
124124¬¬-pull = sequence rawApplicative
125125 (λ f → f lower)
126- (λ f g → g (λ x → ⊥-elim (f x ( λ y → g (λ _ → y)))))
126+ (λ f g → g (λ x → contradiction ( λ y → g (λ _ → y)) (f x )))
127127
128128¬¬-remove : ∀ {p} (F : PropF p) {P} →
129129 ¬ ¬ ⟦ F ⟧ (¬ ¬ P) → ¬ ¬ ⟦ F ⟧ P
You can’t perform that action at this time.
0 commit comments