src/Sequents/LK.thy
author kleing
Fri, 27 May 2005 01:09:44 +0200
changeset 16095 f6af6b265d20
parent 7117 37eccadf6b8a
child 17481 75166ebb619b
permissions -rw-r--r--
put global isatest settings in one file, sourced by the other scripts

(*  Title:      LK/LK
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1993  University of Cambridge

Axiom to express monotonicity (a variant of the deduction theorem).  Makes the
link between |- and ==>, needed for instance to prove imp_cong.

Axiom left_cong allows the simplifier to use left-side formulas.  Ideally it
should be derived from lower-level axioms.

CANNOT be added to LK0.thy because modal logic is built upon it, and
various modal rules would become inconsistent.
*)

LK = LK0 +

rules

  monotonic  "($H |- P ==> $H |- Q) ==> $H, P |- Q"

  left_cong  "[| P == P';  |- P' ==> ($H |- $F) == ($H' |- $F') |] 
              ==> (P, $H |- $F) == (P', $H' |- $F')"
end