src/Sequents/ILL/ILL_predlog.thy
author wenzelm
Fri, 25 Nov 2005 21:14:34 +0100
changeset 18260 5597cfcecd49
parent 17481 75166ebb619b
permissions -rw-r--r--
tuned induct proofs;

(* $Id$ *)

theory ILL_predlog
imports ILL
begin

typedecl plf

consts
  "&"   :: "[plf,plf] => plf"   (infixr 35)
  "|"   :: "[plf,plf] => plf"   (infixr 35)
  ">"   :: "[plf,plf] => plf"   (infixr 35)
  "="   :: "[plf,plf] => plf"   (infixr 35)
  "@NG" :: "plf => plf"   ("- _ " [50] 55)
  ff    :: "plf"

  PL    :: "plf => o"      ("[* / _ / *]" [] 100)


translations

  "[* A & B *]" == "[*A*] && [*B*]"
  "[* A | B *]" == "![*A*] ++ ![*B*]"
  "[* - A *]"   == "[*A > ff*]"
  "[* ff *]"    == "0"
  "[* A = B *]" => "[* (A > B) & (B > A) *]"

  "[* A > B *]" == "![*A*] -o [*B*]"

(* another translations for linear implication:
  "[* A > B *]" == "!([*A*] -o [*B*])" *)

end