src/FOLP/ex/If.thy
author huffman
Thu, 22 Sep 2005 19:06:34 +0200
changeset 17586 df8b2f0e462e
parent 17480 fd19f77dcf60
child 19796 d86e7b1fc472
permissions -rw-r--r--
added theorem adm_ball

(* $Id$ *)

theory If
imports FOLP
begin

constdefs
  if :: "[o,o,o]=>o"
  "if(P,Q,R) == P&Q | ~P&R"

ML {* use_legacy_bindings (the_context ()) *}

end