src/FOL/ex/LocaleTest.thy
author ballarin
Wed, 11 Nov 2009 21:53:58 +0100
changeset 33617 bfee47887ca3
parent 33462 ddcf2004e215
child 33671 4b0f2599ed48
child 33835 d6134fb5a49f
permissions -rw-r--r--
Enables tests for locale functionality that is now available.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30749
44a16c6956f9 Comments updated.
ballarin
parents: 29513
diff changeset
     1
(*  Title:      FOL/ex/LocaleTest.thy
28873
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
30749
44a16c6956f9 Comments updated.
ballarin
parents: 29513
diff changeset
     4
Test environment for the locale implementation.
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
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 29513
diff changeset
   122
interpretation var?: extra_type "0" "%x y. x = 0" .
29251
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
33460
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   127
text {* Under which circumstances term syntax remains active. *}
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   128
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   129
locale "syntax" =
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   130
  fixes p1 :: "'a => 'b"
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   131
    and p2 :: "'b => o"
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   132
begin
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   133
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   134
definition d1 :: "'a => o" where "d1(x) <-> ~ p2(p1(x))"
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   135
definition d2 :: "'b => o" where "d2(x) <-> ~ p2(x)"
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   136
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   137
thm d1_def d2_def
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   138
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   139
end
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   140
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   141
thm syntax.d1_def syntax.d2_def
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   142
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   143
locale syntax' = "syntax" p1 p2 for p1 :: "'a => 'a" and p2 :: "'a => o"
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   144
begin
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   145
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   146
thm d1_def d2_def  (* should print as "d1(?x) <-> ..." and "d2(?x) <-> ..." *)
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   147
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   148
ML {*
33462
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   149
  fun check_syntax ctxt thm expected =
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   150
    let
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   151
      val obtained = PrintMode.setmp [] (Display.string_of_thm ctxt) thm;
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   152
    in
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   153
      if obtained <> expected
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   154
      then error ("Theorem syntax '" ^ obtained ^ "' obtained, but '" ^ expected ^ "' expected.")
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   155
      else ()
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   156
    end;
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   157
*}
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   158
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   159
ML {*
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   160
  check_syntax @{context} @{thm d1_def} "d1(?x) <-> ~ p2(p1(?x))";
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   161
  check_syntax @{context} @{thm d2_def} "d2(?x) <-> ~ p2(?x)";
33460
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   162
*}
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   163
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   164
end
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   165
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   166
locale syntax'' = "syntax" p3 p2 for p3 :: "'a => 'b" and p2 :: "'b => o"
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   167
begin
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   168
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   169
thm d1_def d2_def
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   170
  (* should print as "syntax.d1(p3, p2, ?x) <-> ..." and "d2(?x) <-> ..." *)
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   171
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   172
ML {*
33462
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   173
  check_syntax @{context} @{thm d1_def} "syntax.d1(p3, p2, ?x) <-> ~ p2(p3(?x))";
ddcf2004e215 Use PrintMode.setmp to make thread-safe; avoid code clones.
ballarin
parents: 33461
diff changeset
   174
  check_syntax @{context} @{thm d2_def} "d2(?x) <-> ~ p2(?x)";
33460
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   175
*}
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   176
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   177
end
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   178
6c273b0e0e26 Relax on type agreement with original context when applying term syntax.
ballarin
parents: 32802
diff changeset
   179
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   180
section {* Foundational versions of theorems *}
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   181
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   182
thm logic.assoc
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   183
thm logic.lor_def
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   184
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   185
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   186
section {* Defines *}
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   187
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   188
locale logic_def =
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   189
  fixes land (infixl "&&" 55)
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   190
    and lor (infixl "||" 50)
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   191
    and lnot ("-- _" [60] 60)
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   192
  assumes assoc: "(x && y) && z = x && (y && z)"
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   193
    and notnot: "-- (-- x) = x"
29022
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   194
  defines "x || y == --(-- x && -- y)"
29021
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   195
begin
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   196
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   197
thm lor_def
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   198
(* 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
   199
29021
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   200
lemma "x || y = --(-- x && --y)"
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   201
  by (unfold lor_def) (rule refl)
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   202
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   203
end
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29019
diff changeset
   204
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   205
(* Inheritance of defines *)
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   206
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   207
locale logic_def2 = logic_def
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   208
begin
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   209
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   210
lemma "x || y = --(-- x && --y)"
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   211
  by (unfold lor_def) (rule refl)
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   212
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29028
diff changeset
   213
end
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   214
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   215
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   216
section {* Notes *}
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   217
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   218
(* A somewhat arcane homomorphism example *)
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   219
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   220
definition semi_hom where
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   221
  "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
   222
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   223
lemma semi_hom_mult:
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   224
  "semi_hom(prod, sum, h) ==> h(prod(x, y)) = sum(h(x), h(y))"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   225
  by (simp add: semi_hom_def)
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   226
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   227
locale semi_hom_loc = prod: semi prod + sum: semi sum
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   228
  for prod and sum and h +
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   229
  assumes semi_homh: "semi_hom(prod, sum, h)"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   230
  notes semi_hom_mult = semi_hom_mult [OF semi_homh]
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   231
29219
fa3fb943a091 Attributes not applied in foundational version of fact.
ballarin
parents: 29217
diff changeset
   232
thm semi_hom_loc.semi_hom_mult
fa3fb943a091 Attributes not applied in foundational version of fact.
ballarin
parents: 29217
diff changeset
   233
(* unspecified, attribute not applied in backgroud theory !!! *)
fa3fb943a091 Attributes not applied in foundational version of fact.
ballarin
parents: 29217
diff changeset
   234
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   235
lemma (in semi_hom_loc) "h(prod(x, y)) = sum(h(x), h(y))"
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   236
  by (rule semi_hom_mult)
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   237
29217
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29214
diff changeset
   238
(* 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
   239
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29214
diff changeset
   240
lemma
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29214
diff changeset
   241
  assumes x: "P <-> P"
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29214
diff changeset
   242
  notes y = x
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29214
diff changeset
   243
  shows True ..
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29214
diff changeset
   244
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29031
diff changeset
   245
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   246
section {* Theorem statements *}
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   247
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   248
lemma (in lgrp) lcancel:
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   249
  "x ** y = x ** z <-> y = z"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   250
proof
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   251
  assume "x ** y = x ** z"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   252
  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
   253
  then show "y = z" by (simp add: lone linv)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   254
qed simp
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   255
print_locale! lgrp
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   256
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   257
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   258
locale rgrp = semi +
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   259
  fixes one and inv
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   260
  assumes rone: "x ** one = x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   261
    and rinv: "x ** inv(x) = one"
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   262
begin
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   263
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   264
lemma rcancel:
28873
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   265
  "y ** x = z ** x <-> y = z"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   266
proof
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   267
  assume "y ** x = z ** x"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   268
  then have "y ** (x ** inv(x)) = z ** (x ** inv(x))"
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   269
    by (simp add: assoc [symmetric])
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   270
  then show "y = z" by (simp add: rone rinv)
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   271
qed simp
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   272
2058a6b0eb20 Regression tests for new locale implementation.
ballarin
parents:
diff changeset
   273
end
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   274
print_locale! rgrp
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   275
28886
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   276
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   277
subsection {* Patterns *}
28886
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   278
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   279
lemma (in rgrp)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   280
  assumes "y ** x = z ** x" (is ?a)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   281
  shows "y = z" (is ?t)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   282
proof -
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   283
  txt {* Weird proof involving patterns from context element and conclusion. *}
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   284
  {
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   285
    assume ?a
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   286
    then have "y ** (x ** inv(x)) = z ** (x ** inv(x))"
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   287
      by (simp add: assoc [symmetric])
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   288
    then have ?t by (simp add: rone rinv)
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   289
  }
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   290
  note x = this
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   291
  show ?t by (rule x [OF `?a`])
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   292
qed
9cb1297b6f13 Test for term patterns added.
ballarin
parents: 28881
diff changeset
   293
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   294
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   295
section {* Interpretation between locales: sublocales *}
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   296
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   297
sublocale lgrp < right: rgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   298
print_facts
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   299
proof unfold_locales
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   300
  {
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   301
    fix x
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   302
    have "inv(x) ** x ** one = inv(x) ** x" by (simp add: linv lone)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   303
    then show "x ** one = x" by (simp add: assoc lcancel)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   304
  }
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   305
  note rone = this
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   306
  {
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   307
    fix x
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   308
    have "inv(x) ** x ** inv(x) = inv(x) ** one"
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   309
      by (simp add: linv lone rone)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   310
    then show "x ** inv(x) = one" by (simp add: assoc lcancel)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   311
  }
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   312
qed
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   313
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   314
(* effect on printed locale *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   315
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   316
print_locale! lgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   317
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   318
(* use of derived theorem *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   319
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   320
lemma (in lgrp)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   321
  "y ** x = z ** x <-> y = z"
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   322
  apply (rule rcancel)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   323
  done
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   324
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   325
(* circular interpretation *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   326
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   327
sublocale rgrp < left: lgrp
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   328
proof unfold_locales
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   329
  {
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   330
    fix x
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   331
    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
   332
    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
   333
  }
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   334
  note lone = this
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   335
  {
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   336
    fix x
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   337
    have "inv(x) ** (x ** inv(x)) = one ** inv(x)"
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   338
      by (simp add: rinv lone rone)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   339
    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
   340
  }
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   341
qed
28896
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   342
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   343
(* effect on printed locale *)
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   344
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   345
print_locale! rgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   346
print_locale! lgrp
f30016592375 Tests for sublocale command.
ballarin
parents: 28886
diff changeset
   347
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   348
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   349
(* Duality *)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   350
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   351
locale order =
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   352
  fixes less :: "'a => 'a => o" (infix "<<" 50)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   353
  assumes refl: "x << x"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   354
    and trans: "[| x << y; y << z |] ==> x << z"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   355
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   356
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
   357
  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
   358
  done
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   359
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   360
print_locale! order  (* Only two instances of order. *)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   361
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   362
locale order' =
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   363
  fixes less :: "'a => 'a => o" (infix "<<" 50)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   364
  assumes refl: "x << x"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   365
    and trans: "[| x << y; y << z |] ==> x << z"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   366
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   367
locale order_with_def = order'
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   368
begin
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   369
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   370
definition greater :: "'a => 'a => o" (infix ">>" 50) where
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   371
  "x >> y <-> y << x"
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   372
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   373
end
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   374
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   375
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
   376
  apply unfold_locales
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   377
  unfolding greater_def
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   378
  apply (rule refl) apply (blast intro: trans)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   379
  done
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   380
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   381
print_locale! order_with_def
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   382
(* 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
   383
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   384
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   385
(* locale with many parameters ---
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   386
   interpretations generate alternating group A5 *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   387
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   388
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   389
locale A5 =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   390
  fixes A and B and C and D and E
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   391
  assumes eq: "A <-> B <-> C <-> D <-> E"
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   392
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   393
sublocale A5 < 1: A5 _ _ D E C
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   394
print_facts
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   395
  using eq apply (blast intro: A5.intro) done
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   396
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   397
sublocale A5 < 2: A5 C _ E _ A
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   398
print_facts
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   399
  using eq apply (blast intro: A5.intro) done
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   400
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   401
sublocale A5 < 3: A5 B C A _ _
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   402
print_facts
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   403
  using eq apply (blast intro: A5.intro) done
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   404
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   405
(* Any even permutation of parameters is subsumed by the above. *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   406
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   407
print_locale! A5
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   408
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   409
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   410
(* Free arguments of instance *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   411
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   412
locale trivial =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   413
  fixes P and Q :: o
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   414
  assumes Q: "P <-> P <-> Q"
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   415
begin
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   416
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   417
lemma Q_triv: "Q" using Q by fast
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   418
28881
df2525ad10c6 Some regression tests for theorem statements.
ballarin
parents: 28873
diff changeset
   419
end
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   420
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   421
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
   422
  apply unfold_locales using Q by fast
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   423
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   424
print_locale! trivial
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   425
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   426
context trivial begin thm x.Q [where ?x = True] end
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   427
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   428
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
   429
  by unfold_locales
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28899
diff changeset
   430
  (* Succeeds since previous interpretation is more general. *)
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   431
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   432
print_locale! trivial  (* No instance for y created (subsumed). *)
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28898
diff changeset
   433
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   434
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   435
subsection {* Sublocale, then interpretation in theory *}
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   436
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 29513
diff changeset
   437
interpretation int?: lgrp "op +" "0" "minus"
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   438
proof unfold_locales
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   439
qed (rule int_assoc int_zero int_minus)+
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   440
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   441
thm int.assoc int.semi_axioms
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   442
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 29513
diff changeset
   443
interpretation int2?: semi "op +"
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   444
  by unfold_locales  (* subsumed, thm int2.assoc not generated *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   445
32802
b52aa3bc7362 Stricter test: raise error if registration generates duplicate theorem.
ballarin
parents: 30752
diff changeset
   446
ML {* (PureThy.get_thms @{theory} "int2.assoc";
b52aa3bc7362 Stricter test: raise error if registration generates duplicate theorem.
ballarin
parents: 30752
diff changeset
   447
    error "thm int2.assoc was generated")
b52aa3bc7362 Stricter test: raise error if registration generates duplicate theorem.
ballarin
parents: 30752
diff changeset
   448
  handle ERROR "Unknown fact \"int2.assoc\"" => ([]:thm list); *}
b52aa3bc7362 Stricter test: raise error if registration generates duplicate theorem.
ballarin
parents: 30752
diff changeset
   449
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   450
thm int.lone int.right.rone
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   451
  (* the latter comes through the sublocale relation *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   452
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   453
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   454
subsection {* Interpretation in theory, then sublocale *}
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   455
33617
bfee47887ca3 Enables tests for locale functionality that is now available.
ballarin
parents: 33462
diff changeset
   456
interpretation fol: logic "op +" "minus"
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   457
  by unfold_locales (rule int_assoc int_minus2)+
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   458
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   459
locale logic2 =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   460
  fixes land (infixl "&&" 55)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   461
    and lnot ("-- _" [60] 60)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   462
  assumes assoc: "(x && y) && z = x && (y && z)"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   463
    and notnot: "-- (-- x) = x"
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   464
begin
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   465
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   466
definition lor (infixl "||" 50) where
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   467
  "x || y = --(-- x && -- y)"
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   468
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28896
diff changeset
   469
end
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   470
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   471
sublocale logic < two: logic2
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   472
  by unfold_locales (rule assoc notnot)+
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   473
33617
bfee47887ca3 Enables tests for locale functionality that is now available.
ballarin
parents: 33462
diff changeset
   474
thm fol.two.assoc
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   475
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   476
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   477
subsection {* Declarations and sublocale *}
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   478
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   479
locale logic_a = logic
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   480
locale logic_b = logic
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   481
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   482
sublocale logic_a < logic_b
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   483
  by unfold_locales
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   484
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29035
diff changeset
   485
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   486
subsection {* Equations *}
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   487
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   488
locale logic_o =
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   489
  fixes land (infixl "&&" 55)
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   490
    and lnot ("-- _" [60] 60)
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   491
  assumes assoc_o: "(x && y) && z <-> x && (y && z)"
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   492
    and notnot_o: "-- (-- x) <-> x"
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   493
begin
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   494
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   495
definition lor_o (infixl "||" 50) where
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   496
  "x || y <-> --(-- x && -- y)"
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   497
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   498
end
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   499
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 29513
diff changeset
   500
interpretation x: logic_o "op &" "Not"
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   501
  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
   502
proof -
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   503
  show bool_logic_o: "PROP logic_o(op &, Not)" by unfold_locales fast+
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   504
  show "logic_o.lor_o(op &, Not, x, y) <-> x | y"
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   505
    by (unfold logic_o.lor_o_def [OF bool_logic_o]) fast
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   506
qed
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   507
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   508
thm x.lor_o_def bool_logic_o
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   509
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   510
lemma lor_triv: "z <-> z" ..
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   511
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   512
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
   513
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   514
thm lor_triv [where z = True] (* Check strict prefix. *)
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29213
diff changeset
   515
  x.lor_triv
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   516
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   517
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
   518
subsection {* Interpretation in proofs *}
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   519
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   520
lemma True
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   521
proof
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   522
  interpret "local": lgrp "op +" "0" "minus"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   523
    by unfold_locales  (* subsumed *)
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   524
  {
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   525
    fix zero :: int
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   526
    assume "!!x. zero + x = x" "!!x. (-x) + x = zero"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   527
    then interpret local_fixed: lgrp "op +" zero "minus"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   528
      by unfold_locales
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   529
    thm local_fixed.lone
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   530
  }
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   531
  assume "!!x zero. zero + x = x" "!!x zero. (-x) + x = zero"
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   532
  then interpret local_free: lgrp "op +" zero "minus" for zero
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   533
    by unfold_locales
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   534
  thm local_free.lone [where ?zero = 0]
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   535
qed
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28993
diff changeset
   536
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28936
diff changeset
   537
end