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

Axiom

logic.decidable

Statement

λA. A ∨ (¬A)

Main Dependencies
Theory

Coq-Jumb
Statement

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



Matita-Jumb
Statement

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



Lean-jumb
Statement

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



PVS-jumb

Statement

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.