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