src/Sequents/Modal0.thy
author wenzelm
Wed, 25 Jul 2012 18:05:07 +0200
changeset 48502 fd03877ad5bc
parent 35113 1a0c129bb2e0
child 48891 c0eafbd55de3
permissions -rw-r--r--
session specifications for doc-src, excluding TutorialI for now;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
     1
(*  Title:      Sequents/Modal0.thy
2073
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
     2
    Author:     Martin Coen
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
     3
    Copyright   1991  University of Cambridge
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
     4
*)
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
     5
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
     6
theory Modal0
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
     7
imports LK0
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
     8
uses "modal.ML"
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
     9
begin
2073
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
    10
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
    11
consts
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
    12
  box           :: "o=>o"       ("[]_" [50] 50)
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
    13
  dia           :: "o=>o"       ("<>_" [50] 50)
21426
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    14
  strimp        :: "[o,o]=>o"   (infixr "--<" 25)
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    15
  streqv        :: "[o,o]=>o"   (infixr ">-<" 25)
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    16
  Lstar         :: "two_seqi"
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    17
  Rstar         :: "two_seqi"
14765
bafb24c150c1 proper use of 'syntax';
wenzelm
parents: 7098
diff changeset
    18
bafb24c150c1 proper use of 'syntax';
wenzelm
parents: 7098
diff changeset
    19
syntax
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    20
  "_Lstar"      :: "two_seqe"   ("(_)|L>(_)" [6,6] 5)
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    21
  "_Rstar"      :: "two_seqe"   ("(_)|R>(_)" [6,6] 5)
2073
fb0655539d05 New unified treatment of sequent calculi by Sara Kalvala
paulson
parents:
diff changeset
    22
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    23
ML {*
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    24
  fun star_tr c [s1, s2] = Const(c, dummyT) $ seq_tr s1 $ seq_tr s2;
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    25
  fun star_tr' c [s1, s2] = Const(c, dummyT) $ seq_tr' s1 $ seq_tr' s2;
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    26
*}
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    27
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    28
parse_translation {*
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    29
 [(@{syntax_const "_Lstar"}, star_tr @{const_syntax Lstar}),
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    30
  (@{syntax_const "_Rstar"}, star_tr @{const_syntax Rstar})]
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    31
*}
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    32
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    33
print_translation {*
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    34
 [(@{const_syntax Lstar}, star_tr' @{syntax_const "_Lstar"}),
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    35
  (@{const_syntax Rstar}, star_tr' @{syntax_const "_Rstar"})]
1a0c129bb2e0 modernized translations;
wenzelm
parents: 21426
diff changeset
    36
*}
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    37
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    38
defs
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    39
  strimp_def:    "P --< Q == [](P --> Q)"
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    40
  streqv_def:    "P >-< Q == (P --< Q) & (Q --< P)"
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    41
21426
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    42
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    43
lemmas rewrite_rls = strimp_def streqv_def
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    44
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    45
lemma iffR:
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    46
    "[| $H,P |- $E,Q,$F;  $H,Q |- $E,P,$F |] ==> $H |- $E, P <-> Q, $F"
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    47
  apply (unfold iff_def)
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    48
  apply (assumption | rule conjR impR)+
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    49
  done
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    50
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    51
lemma iffL:
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    52
    "[| $H,$G |- $E,P,Q;  $H,Q,P,$G |- $E |] ==> $H, P <-> Q, $G |- $E"
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    53
  apply (unfold iff_def)
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    54
  apply (assumption | rule conjL impL basic)+
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    55
  done
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    56
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    57
lemmas safe_rls = basic conjL conjR disjL disjR impL impR notL notR iffL iffR
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    58
  and unsafe_rls = allR exL
87ac12bed1ab converted legacy ML scripts;
wenzelm
parents: 17481
diff changeset
    59
  and bound_rls = allL exR
17481
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    60
75166ebb619b converted to Isar theory format;
wenzelm
parents: 14765
diff changeset
    61
end