src/FOL/ex/NewLocaleTest.thy
author ballarin
Sun, 14 Dec 2008 15:43:04 +0100
changeset 29214 76c7fc5ba849
parent 29213 c3ed38de863c
child 29217 a1c992fb3184
permissions -rw-r--r--
Strict prefixes in locales expressions.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     1
(*  Title:      FOL/ex/NewLocaleTest.thy
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     2
    Author:     Clemens Ballarin, TU Muenchen
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     3
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     4
Testing environment for locale expressions --- experimental.
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     5
*)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     6
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     7
theory NewLocaleTest
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     8
imports NewLocaleSetup
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
     9
begin
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    10
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    11
ML_val {* set new_locales *}
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    12
ML_val {* set Toplevel.debug *}
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    13
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    14
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    15
typedecl int arities int :: "term"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    16
consts plus :: "int => int => int" (infixl "+" 60)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    17
  zero :: int ("0")
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    18
  minus :: "int => int" ("- _")
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    19
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
    20
axioms
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
    21
  int_assoc: "(x + y::int) + z = x + (y + z)"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
    22
  int_zero: "0 + x = x"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
    23
  int_minus: "(-x) + x = 0"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
    24
  int_minus2: "-(-x) = x"
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    25
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
    26
section {* Inference of parameter types *}
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    27
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    28
locale param1 = fixes p
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    29
print_locale! param1
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    30
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
    31
locale param2 = fixes p :: 'b
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    32
print_locale! param2
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    33
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    34
(*
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    35
locale param_top = param2 r for r :: "'b :: {}"
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
    36
  Fails, cannot generalise parameter.
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    37
*)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    38
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    39
locale param3 = fixes p (infix ".." 50)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    40
print_locale! param3
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    41
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    42
locale param4 = fixes p :: "'a => 'a => 'a" (infix ".." 50)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    43
print_locale! param4
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    44
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    45
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
    46
subsection {* Incremental type constraints *}
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    47
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    48
locale constraint1 =
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    49
  fixes  prod (infixl "**" 65)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    50
  assumes l_id: "x ** y = x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    51
  assumes assoc: "(x ** y) ** z = x ** (y ** z)"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    52
print_locale! constraint1
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    53
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    54
locale constraint2 =
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    55
  fixes p and q
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    56
  assumes "p = q"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    57
print_locale! constraint2
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    58
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    59
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
    60
section {* Inheritance *}
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    61
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    62
locale semi =
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    63
  fixes prod (infixl "**" 65)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    64
  assumes assoc: "(x ** y) ** z = x ** (y ** z)"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    65
print_locale! semi thm semi_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    66
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    67
locale lgrp = semi +
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    68
  fixes one and inv
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    69
  assumes lone: "one ** x = x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    70
    and linv: "inv(x) ** x = one"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    71
print_locale! lgrp thm lgrp_def lgrp_axioms_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    72
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    73
locale add_lgrp = semi "op ++" for sum (infixl "++" 60) +
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    74
  fixes zero and neg
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    75
  assumes lzero: "zero ++ x = x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    76
    and lneg: "neg(x) ++ x = zero"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    77
print_locale! add_lgrp thm add_lgrp_def add_lgrp_axioms_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    78
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    79
locale rev_lgrp = semi "%x y. y ++ x" for sum (infixl "++" 60)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    80
print_locale! rev_lgrp thm rev_lgrp_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    81
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    82
locale hom = f: semi f + g: semi g for f and g
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    83
print_locale! hom thm hom_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    84
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    85
locale perturbation = semi + d: semi "%x y. delta(x) ** delta(y)" for delta
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    86
print_locale! perturbation thm perturbation_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    87
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    88
locale pert_hom = d1: perturbation f d1 + d2: perturbation f d2 for f d1 d2
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    89
print_locale! pert_hom thm pert_hom_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    90
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    91
text {* Alternative expression, obtaining nicer names in @{text "semi f"}. *}
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    92
locale pert_hom' = semi f + d1: perturbation f d1 + d2: perturbation f d2 for f d1 d2
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    93
print_locale! pert_hom' thm pert_hom'_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    94
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    95
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
    96
section {* Syntax declarations *}
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    97
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    98
locale logic =
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
    99
  fixes land (infixl "&&" 55)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   100
    and lnot ("-- _" [60] 60)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   101
  assumes assoc: "(x && y) && z = x && (y && z)"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   102
    and notnot: "-- (-- x) = x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   103
begin
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   104
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   105
definition lor (infixl "||" 50) where
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   106
  "x || y = --(-- x && -- y)"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   107
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   108
end
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   109
print_locale! logic
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   110
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   111
locale use_decl = logic + semi "op ||"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   112
print_locale! use_decl thm use_decl_def
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   113
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   114
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   115
section {* Foundational versions of theorems *}
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   116
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   117
thm logic.assoc
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   118
thm logic.lor_def
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   119
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   120
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   121
section {* Defines *}
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   122
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   123
locale logic_def =
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   124
  fixes land (infixl "&&" 55)
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   125
    and lor (infixl "||" 50)
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   126
    and lnot ("-- _" [60] 60)
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   127
  assumes assoc: "(x && y) && z = x && (y && z)"
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   128
    and notnot: "-- (-- x) = x"
29022
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   129
  defines "x || y == --(-- x && -- y)"
29021
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   130
begin
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   131
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   132
thm lor_def
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   133
(* Can we get rid the the additional hypothesis, caused by LocalTheory.notes? *)
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   134
29021
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   135
lemma "x || y = --(-- x && --y)"
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   136
  by (unfold lor_def) (rule refl)
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   137
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   138
end
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   139
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   140
(* Inheritance of defines *)
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   141
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   142
locale logic_def2 = logic_def
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   143
begin
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   144
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   145
lemma "x || y = --(-- x && --y)"
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   146
  by (unfold lor_def) (rule refl)
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   147
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   148
end
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   149
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   150
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   151
section {* Notes *}
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   152
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   153
(* A somewhat arcane homomorphism example *)
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   154
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   155
definition semi_hom where
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   156
  "semi_hom(prod, sum, h) <-> (ALL x y. h(prod(x, y)) = sum(h(x), h(y)))"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   157
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   158
lemma semi_hom_mult:
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   159
  "semi_hom(prod, sum, h) ==> h(prod(x, y)) = sum(h(x), h(y))"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   160
  by (simp add: semi_hom_def)
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   161
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   162
locale semi_hom_loc = prod: semi prod + sum: semi sum
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   163
  for prod and sum and h +
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   164
  assumes semi_homh: "semi_hom(prod, sum, h)"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   165
  notes semi_hom_mult = semi_hom_mult [OF semi_homh]
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   166
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   167
lemma (in semi_hom_loc) "h(prod(x, y)) = sum(h(x), h(y))"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   168
  by (rule semi_hom_mult)
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   169
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   170
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   171
section {* Theorem statements *}
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   172
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   173
lemma (in lgrp) lcancel:
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   174
  "x ** y = x ** z <-> y = z"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   175
proof
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   176
  assume "x ** y = x ** z"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   177
  then have "inv(x) ** x ** y = inv(x) ** x ** z" by (simp add: assoc)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   178
  then show "y = z" by (simp add: lone linv)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   179
qed simp
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   180
print_locale! lgrp
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   181
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   182
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   183
locale rgrp = semi +
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   184
  fixes one and inv
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   185
  assumes rone: "x ** one = x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   186
    and rinv: "x ** inv(x) = one"
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   187
begin
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   188
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   189
lemma rcancel:
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   190
  "y ** x = z ** x <-> y = z"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   191
proof
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   192
  assume "y ** x = z ** x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   193
  then have "y ** (x ** inv(x)) = z ** (x ** inv(x))"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   194
    by (simp add: assoc [symmetric])
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   195
  then show "y = z" by (simp add: rone rinv)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   196
qed simp
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   197
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   198
end
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   199
print_locale! rgrp
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   200
28886
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   201
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   202
subsection {* Patterns *}
28886
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   203
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   204
lemma (in rgrp)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   205
  assumes "y ** x = z ** x" (is ?a)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   206
  shows "y = z" (is ?t)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   207
proof -
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   208
  txt {* Weird proof involving patterns from context element and conclusion. *}
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   209
  {
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   210
    assume ?a
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   211
    then have "y ** (x ** inv(x)) = z ** (x ** inv(x))"
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   212
      by (simp add: assoc [symmetric])
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   213
    then have ?t by (simp add: rone rinv)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   214
  }
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   215
  note x = this
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   216
  show ?t by (rule x [OF `?a`])
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   217
qed
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   218
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   219
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   220
section {* Interpretation between locales: sublocales *}
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   221
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   222
sublocale lgrp < right: rgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   223
print_facts
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   224
proof unfold_locales
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   225
  {
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   226
    fix x
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   227
    have "inv(x) ** x ** one = inv(x) ** x" by (simp add: linv lone)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   228
    then show "x ** one = x" by (simp add: assoc lcancel)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   229
  }
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   230
  note rone = this
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   231
  {
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   232
    fix x
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   233
    have "inv(x) ** x ** inv(x) = inv(x) ** one"
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   234
      by (simp add: linv lone rone)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   235
    then show "x ** inv(x) = one" by (simp add: assoc lcancel)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   236
  }
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   237
qed
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   238
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   239
(* effect on printed locale *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   240
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   241
print_locale! lgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   242
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   243
(* use of derived theorem *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   244
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   245
lemma (in lgrp)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   246
  "y ** x = z ** x <-> y = z"
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   247
  apply (rule rcancel)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   248
  done
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   249
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   250
(* circular interpretation *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   251
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   252
sublocale rgrp < left: lgrp
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   253
proof unfold_locales
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   254
  {
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   255
    fix x
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   256
    have "one ** (x ** inv(x)) = x ** inv(x)" by (simp add: rinv rone)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   257
    then show "one ** x = x" by (simp add: assoc [symmetric] rcancel)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   258
  }
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   259
  note lone = this
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   260
  {
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   261
    fix x
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   262
    have "inv(x) ** (x ** inv(x)) = one ** inv(x)"
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   263
      by (simp add: rinv lone rone)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   264
    then show "inv(x) ** x = one" by (simp add: assoc [symmetric] rcancel)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   265
  }
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   266
qed
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   267
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   268
(* effect on printed locale *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   269
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   270
print_locale! rgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   271
print_locale! lgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   272
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   273
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   274
(* Duality *)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   275
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   276
locale order =
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   277
  fixes less :: "'a => 'a => o" (infix "<<" 50)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   278
  assumes refl: "x << x"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   279
    and trans: "[| x << y; y << z |] ==> x << z"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   280
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   281
sublocale order < dual: order "%x y. y << x"
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   282
  apply unfold_locales apply (rule refl) apply (blast intro: trans)
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   283
  done
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   284
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   285
print_locale! order  (* Only two instances of order. *)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   286
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   287
locale order' =
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   288
  fixes less :: "'a => 'a => o" (infix "<<" 50)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   289
  assumes refl: "x << x"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   290
    and trans: "[| x << y; y << z |] ==> x << z"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   291
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   292
locale order_with_def = order'
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   293
begin
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   294
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   295
definition greater :: "'a => 'a => o" (infix ">>" 50) where
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   296
  "x >> y <-> y << x"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   297
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   298
end
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   299
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   300
sublocale order_with_def < dual: order' "op >>"
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   301
  apply unfold_locales
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   302
  unfolding greater_def
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   303
  apply (rule refl) apply (blast intro: trans)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   304
  done
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   305
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   306
print_locale! order_with_def
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   307
(* Note that decls come after theorems that make use of them. *)
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   308
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   309
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   310
(* locale with many parameters ---
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   311
   interpretations generate alternating group A5 *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   312
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   313
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   314
locale A5 =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   315
  fixes A and B and C and D and E
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   316
  assumes eq: "A <-> B <-> C <-> D <-> E"
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   317
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   318
sublocale A5 < 1: A5 _ _ D E C
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   319
print_facts
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   320
  using eq apply (blast intro: A5.intro) done
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   321
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   322
sublocale A5 < 2: A5 C _ E _ A
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   323
print_facts
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   324
  using eq apply (blast intro: A5.intro) done
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   325
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   326
sublocale A5 < 3: A5 B C A _ _
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   327
print_facts
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   328
  using eq apply (blast intro: A5.intro) done
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   329
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   330
(* Any even permutation of parameters is subsumed by the above. *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   331
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   332
print_locale! A5
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   333
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   334
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   335
(* Free arguments of instance *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   336
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   337
locale trivial =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   338
  fixes P and Q :: o
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   339
  assumes Q: "P <-> P <-> Q"
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   340
begin
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   341
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   342
lemma Q_triv: "Q" using Q by fast
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   343
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   344
end
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   345
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   346
sublocale trivial < x: trivial x _
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   347
  apply unfold_locales using Q by fast
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   348
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   349
print_locale! trivial
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   350
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   351
context trivial begin thm x.Q [where ?x = True] end
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   352
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   353
sublocale trivial < y: trivial Q Q
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   354
  by unfold_locales
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   355
  (* Succeeds since previous interpretation is more general. *)
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   356
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   357
print_locale! trivial  (* No instance for y created (subsumed). *)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   358
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   359
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   360
subsection {* Sublocale, then interpretation in theory *}
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   361
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   362
interpretation int: lgrp "op +" "0" "minus"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   363
proof unfold_locales
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   364
qed (rule int_assoc int_zero int_minus)+
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   365
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   366
thm int.assoc int.semi_axioms
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   367
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   368
interpretation int2: semi "op +"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   369
  by unfold_locales  (* subsumed, thm int2.assoc not generated *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   370
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   371
thm int.lone int.right.rone
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   372
  (* the latter comes through the sublocale relation *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   373
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   374
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   375
subsection {* Interpretation in theory, then sublocale *}
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   376
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   377
interpretation (* fol: *) logic "op +" "minus"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   378
(* FIXME declaration of qualified names *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   379
  by unfold_locales (rule int_assoc int_minus2)+
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   380
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   381
locale logic2 =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   382
  fixes land (infixl "&&" 55)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   383
    and lnot ("-- _" [60] 60)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   384
  assumes assoc: "(x && y) && z = x && (y && z)"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   385
    and notnot: "-- (-- x) = x"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   386
begin
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   387
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   388
(* FIXME interpretation below fails
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   389
definition lor (infixl "||" 50) where
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   390
  "x || y = --(-- x && -- y)"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   391
*)
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   392
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   393
end
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   394
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   395
sublocale logic < two: logic2
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   396
  by unfold_locales (rule assoc notnot)+
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   397
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   398
thm two.assoc
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   399
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   400
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   401
subsection {* Declarations and sublocale *}
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   402
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   403
locale logic_a = logic
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   404
locale logic_b = logic
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   405
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   406
sublocale logic_a < logic_b
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   407
  by unfold_locales
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   408
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   409
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   410
subsection {* Equations *}
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   411
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   412
locale logic_o =
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   413
  fixes land (infixl "&&" 55)
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   414
    and lnot ("-- _" [60] 60)
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   415
  assumes assoc_o: "(x && y) && z <-> x && (y && z)"
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   416
    and notnot_o: "-- (-- x) <-> x"
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   417
begin
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   418
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   419
definition lor_o (infixl "||" 50) where
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   420
  "x || y <-> --(-- x && -- y)"
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   421
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   422
end
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   423
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   424
interpretation x!: logic_o "op &" "Not"
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   425
  where bool_logic_o: "logic_o.lor_o(op &, Not, x, y) <-> x | y"
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   426
proof -
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   427
  show bool_logic_o: "PROP logic_o(op &, Not)" by unfold_locales fast+
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   428
  show "logic_o.lor_o(op &, Not, x, y) <-> x | y"
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   429
    by (unfold logic_o.lor_o_def [OF bool_logic_o]) fast
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   430
qed
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   431
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   432
thm x.lor_o_def bool_logic_o
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   433
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   434
lemma lor_triv: "z <-> z" ..
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   435
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   436
lemma (in logic_o) lor_triv: "x || y <-> x || y" by fast
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   437
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   438
thm lor_triv [where z = True] (* Check strict prefix. *)
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   439
  x.lor_triv
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   440
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   441
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   442
subsection {* Interpretation in proofs *}
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   443
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   444
lemma True
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   445
proof
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   446
  interpret "local": lgrp "op +" "0" "minus"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   447
    by unfold_locales  (* subsumed *)
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   448
  {
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   449
    fix zero :: int
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   450
    assume "!!x. zero + x = x" "!!x. (-x) + x = zero"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   451
    then interpret local_fixed: lgrp "op +" zero "minus"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   452
      by unfold_locales
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   453
    thm local_fixed.lone
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   454
  }
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   455
  assume "!!x zero. zero + x = x" "!!x zero. (-x) + x = zero"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   456
  then interpret local_free: lgrp "op +" zero "minus" for zero
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   457
    by unfold_locales
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   458
  thm local_free.lone [where ?zero = 0]
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   459
qed
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   460
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   461
end