// This prints the left floatting menu
Dedukti    Load Matita      Load Coq         Load Lean        Load PVS         Load OpenTheory Load
Dedukti-jumb

Definition

logic.decidable

Body

λA. A ∨ (¬A)

Main Dependencies
Theory

Coq-Jumb
Body

Definition decidable : Prop -> Prop := fun (A:Prop) => connectives.Or A (connectives.Not A)



Matita-Jumb
Body

definition decidable : Prop -> Prop := \lambda A : Prop. (Or) A ((Not) A)



Lean-jumb
Body

def decidable : (Prop) -> Prop := fun (A : Prop) , (((connectives.Or) ) (A)) (((connectives.Not) ) (A))



PVS-jumb

Body

decidable : [bool -> bool] = (LAMBDA(A:bool):connectives_sttfa_th.sttfa_Or(A)(connectives_sttfa_th.sttfa_Not(A)))



OpenTheory

Printing for OpenTheory is not working at the moment.