src/HOL/Tools/BNF/bnf_util.ML
author desharna
Mon, 06 Oct 2014 13:34:12 +0200
changeset 58568 727e014c6dbd
parent 58567 f0d09e17edba
child 58569 3f61adcc1fc9
permissions -rw-r--r--
add 'set_cases' to 'fp_sugar'
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55061
a0adf838e2d1 adjusted comments
blanchet
parents: 55060
diff changeset
     1
(*  Title:      HOL/Tools/BNF/bnf_util.ML
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     2
    Author:     Dmitriy Traytel, TU Muenchen
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     3
    Copyright   2012
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     4
49282
c057e1b39f16 renamed "BNF_Library" to "BNF_Util"
blanchet
parents: 49255
diff changeset
     5
Library for bounded natural functors.
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     6
*)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     7
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     8
signature BNF_UTIL =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     9
sig
54008
b15cfc2864de refactoring -- splitting between constructor sugar dependencies and true BNF dependencies
blanchet
parents: 53888
diff changeset
    10
  include CTR_SUGAR_UTIL
55575
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
    11
  include BNF_FP_REC_SUGAR_UTIL
54008
b15cfc2864de refactoring -- splitting between constructor sugar dependencies and true BNF dependencies
blanchet
parents: 53888
diff changeset
    12
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    13
  val map6: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    14
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    15
  val map7: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    16
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    17
  val map8: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    18
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list -> 'i list
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    19
  val map9: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    20
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    21
    'i list -> 'j list
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    22
  val map10: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    23
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    24
    'i list -> 'j list -> 'k list
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    25
  val map11: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    26
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    27
    'i list -> 'j list -> 'k list -> 'l list
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    28
  val map12: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l -> 'm) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    29
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    30
    'i list -> 'j list -> 'k list -> 'l list -> 'm list
53705
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
    31
  val map13: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l -> 'm -> 'n) ->
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
    32
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
    33
    'i list -> 'j list -> 'k list -> 'l list -> 'm list -> 'n list
55772
367ec44763fd correct most general type for mutual recursion when several identical types are involved
blanchet
parents: 55575
diff changeset
    34
  val map14: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l -> 'm -> 'n ->
367ec44763fd correct most general type for mutual recursion when several identical types are involved
blanchet
parents: 55575
diff changeset
    35
      'o) ->
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
    36
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
    37
    'i list -> 'j list -> 'k list -> 'l list -> 'm list -> 'n list -> 'o list
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
    38
  val map15: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l -> 'm -> 'n ->
56521
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
    39
      'o -> 'p) ->
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
    40
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
    41
    'i list -> 'j list -> 'k list -> 'l list -> 'm list -> 'n list -> 'o list -> 'p list
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
    42
  val map16: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l -> 'm -> 'n ->
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
    43
      'o -> 'p -> 'q) ->
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
    44
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
    45
    'i list -> 'j list -> 'k list -> 'l list -> 'm list -> 'n list -> 'o list -> 'p list -> 'q list
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    46
  val fold_map4: ('a -> 'b -> 'c -> 'd -> 'e -> 'f * 'e) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    47
    'a list -> 'b list -> 'c list -> 'd list -> 'e -> 'f list * 'e
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    48
  val fold_map5: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g * 'f) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    49
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f -> 'g list * 'f
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    50
  val fold_map6: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h * 'g) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    51
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g -> 'h list * 'g
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    52
  val fold_map7: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i * 'h) ->
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    53
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h -> 'i list * 'h
51758
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
    54
  val fold_map8: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j * 'i) ->
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
    55
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list -> 'i ->
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
    56
    'j list * 'i
51767
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
    57
  val fold_map9: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k * 'j) ->
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
    58
    'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
    59
    'i list -> 'j -> 'k list * 'j
51903
126f8d11f873 move function to library
blanchet
parents: 51894
diff changeset
    60
  val split_list4: ('a * 'b * 'c * 'd) list -> 'a list * 'b list * 'c list * 'd list
54841
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54601
diff changeset
    61
  val split_list5: ('a * 'b * 'c * 'd * 'e) list -> 'a list * 'b list * 'c list * 'd list * 'e list
58561
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
    62
  val split_list6: ('a * 'b * 'c * 'd * 'e * 'f) list -> 'a list * 'b list * 'c list * 'd list *
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
    63
    'e list * 'f list
58563
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
    64
  val split_list7: ('a * 'b * 'c * 'd * 'e * 'f * 'g) list -> 'a list * 'b list * 'c list *
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
    65
    'd list * 'e list * 'f list * 'g list
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
    66
  val split_list8: ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h) list -> 'a list * 'b list * 'c list *
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
    67
    'd list * 'e list * 'f list * 'g list * 'h list
58564
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
    68
  val split_list9: ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i) list -> 'a list * 'b list *
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
    69
    'c list * 'd list * 'e list * 'f list * 'g list * 'h list * 'i list
58566
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
    70
  val split_list10: ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j) list -> 'a list * 'b list *
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
    71
    'c list * 'd list * 'e list * 'f list * 'g list * 'h list * 'i list * 'j list
58567
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
    72
  val split_list11: ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k) list -> 'a list *
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
    73
    'b list * 'c list * 'd list * 'e list * 'f list * 'g list * 'h list * 'i list * 'j list *
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
    74
    'k list
58568
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
    75
  val split_list12: ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l) list -> 'a list *
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
    76
    'b list * 'c list * 'd list * 'e list * 'f list * 'g list * 'h list * 'i list * 'j list *
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
    77
    'k list * 'l list
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    78
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    79
  val mk_TFreess: int list -> Proof.context -> typ list list * Proof.context
49177
db8ce685073f introduced and used "mk_Freesss", and simplified "mk_Freess(')"
blanchet
parents: 49176
diff changeset
    80
  val mk_Freesss: string -> typ list list list -> Proof.context ->
db8ce685073f introduced and used "mk_Freesss", and simplified "mk_Freess(')"
blanchet
parents: 49176
diff changeset
    81
    term list list list * Proof.context
49200
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49178
diff changeset
    82
  val mk_Freessss: string -> typ list list list list -> Proof.context ->
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49178
diff changeset
    83
    term list list list list * Proof.context
53034
6067703399ad moved library function where it belongs, and used Dmitriy's inside-out implementation
blanchet
parents: 52985
diff changeset
    84
  val nonzero_string_of_int: int -> string
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    85
53036
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
    86
  val binder_fun_types: typ -> typ list
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
    87
  val body_fun_type: typ -> typ
53037
blanchet
parents: 53036
diff changeset
    88
  val strip_fun_type: typ -> typ list * typ
49395
323414474c1f use strip_typeN in bnf_def (instead of repairing strip_type)
traytel
parents: 49366
diff changeset
    89
  val strip_typeN: int -> typ -> typ list * typ
323414474c1f use strip_typeN in bnf_def (instead of repairing strip_type)
traytel
parents: 49366
diff changeset
    90
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49434
diff changeset
    91
  val mk_pred2T: typ -> typ -> typ
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    92
  val mk_relT: typ * typ -> typ
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    93
  val dest_relT: typ -> typ * typ
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
    94
  val dest_pred2T: typ -> typ * typ
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    95
  val mk_sumT: typ * typ -> typ
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    96
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    97
  val ctwo: term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    98
  val fst_const: typ -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    99
  val snd_const: typ -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   100
  val Id_const: typ -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   101
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   102
  val mk_Ball: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   103
  val mk_Bex: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   104
  val mk_Card_order: term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   105
  val mk_Field: term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   106
  val mk_Gr: term -> term -> term
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   107
  val mk_Grp: term -> term -> term
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   108
  val mk_UNION: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   109
  val mk_Union: typ -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   110
  val mk_card_binop: string -> (typ * typ -> typ) -> term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   111
  val mk_card_of: term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   112
  val mk_card_order: term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   113
  val mk_cexp: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   114
  val mk_cinfinite: term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   115
  val mk_collect: term list -> typ -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   116
  val mk_converse: term -> term
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   117
  val mk_conversep: term -> term
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   118
  val mk_cprod: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   119
  val mk_csum: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   120
  val mk_dir_image: term -> term -> term
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55856
diff changeset
   121
  val mk_rel_fun: term -> term -> term
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   122
  val mk_image: term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   123
  val mk_in: term list -> term list -> typ -> term
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 56521
diff changeset
   124
  val mk_inj: term -> term
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   125
  val mk_leq: term -> term -> term
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   126
  val mk_ordLeq: term -> term -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   127
  val mk_rel_comp: term * term -> term
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   128
  val mk_rel_compp: term * term -> term
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   129
  val mk_vimage2p: term -> term -> term
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   130
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   131
  (*parameterized terms*)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   132
  val mk_nthN: int -> term -> int -> term
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   133
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   134
  (*parameterized thms*)
57529
5e83df79eaa0 refactor some tactics
desharna
parents: 57206
diff changeset
   135
  val eqTrueI: thm
5e83df79eaa0 refactor some tactics
desharna
parents: 57206
diff changeset
   136
  val eqFalseI: thm
56765
644f0d4820a1 cleaner 'rel_inject' theorems
blanchet
parents: 56648
diff changeset
   137
  val prod_injectD: thm
644f0d4820a1 cleaner 'rel_inject' theorems
blanchet
parents: 56648
diff changeset
   138
  val prod_injectI: thm
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   139
  val ctrans: thm
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   140
  val id_apply: thm
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   141
  val meta_mp: thm
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   142
  val meta_spec: thm
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   143
  val o_apply: thm
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   144
  val rel_funD: thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   145
  val rel_funI: thm
49488
02eb07152998 use iffD* instead of (s)subst instantiated with identity; tuned antiquotations;
traytel
parents: 49484
diff changeset
   146
  val set_mp: thm
02eb07152998 use iffD* instead of (s)subst instantiated with identity; tuned antiquotations;
traytel
parents: 49484
diff changeset
   147
  val set_rev_mp: thm
49490
394870e51d18 tuned antiquotations
traytel
parents: 49488
diff changeset
   148
  val subset_UNIV: thm
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   149
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   150
  val mk_conjIN: int -> thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   151
  val mk_nthI: int -> int -> thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   152
  val mk_nth_conv: int -> int -> thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   153
  val mk_ordLeq_csum: int -> int -> thm -> thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   154
  val mk_rel_funDN: int -> thm -> thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   155
  val mk_rel_funDN_rotated: int -> thm -> thm
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   156
  val mk_sym: thm -> thm
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   157
  val mk_trans: thm -> thm -> thm
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   158
  val mk_UnIN: int -> int -> thm
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   159
  val mk_Un_upper: int -> int -> thm
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   160
57205
blanchet
parents: 57092
diff changeset
   161
  val is_refl_bool: term -> bool
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   162
  val is_refl: thm -> bool
49605
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   163
  val is_concl_refl: thm -> bool
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   164
  val no_refl: thm list -> thm list
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   165
  val no_reflexive: thm list -> thm list
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   166
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49490
diff changeset
   167
  val fold_thms: Proof.context -> thm list -> thm -> thm
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49434
diff changeset
   168
54601
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   169
  val parse_type_args_named_constrained: (binding option * (string * string option)) list parser
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   170
  val parse_map_rel_bindings: (binding * binding) parser
49434
433dc7e028c8 separated registration of BNFs from bnf_def (BNFs are now stored only for bnf_def and (co)data commands)
traytel
parents: 49425
diff changeset
   171
58179
2de7b0313de3 tuned size function generation
blanchet
parents: 57529
diff changeset
   172
  val map_local_theory: (local_theory -> local_theory) -> theory -> theory
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49833
diff changeset
   173
  val typedef: binding * (string * sort) list * mixfix -> term ->
49228
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   174
    (binding * binding) option -> tactic -> local_theory -> (string * Typedef.info) * local_theory
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   175
end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   176
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   177
structure BNF_Util : BNF_UTIL =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   178
struct
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   179
54008
b15cfc2864de refactoring -- splitting between constructor sugar dependencies and true BNF dependencies
blanchet
parents: 53888
diff changeset
   180
open Ctr_Sugar_Util
55575
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
   181
open BNF_FP_Rec_Sugar_Util
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   182
54008
b15cfc2864de refactoring -- splitting between constructor sugar dependencies and true BNF dependencies
blanchet
parents: 53888
diff changeset
   183
(* Library proper *)
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   184
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   185
fun map6 _ [] [] [] [] [] [] = []
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   186
  | map6 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   187
    f x1 x2 x3 x4 x5 x6 :: map6 f x1s x2s x3s x4s x5s x6s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   188
  | map6 _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   189
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   190
fun map7 _ [] [] [] [] [] [] [] = []
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   191
  | map7 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   192
    f x1 x2 x3 x4 x5 x6 x7 :: map7 f x1s x2s x3s x4s x5s x6s x7s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   193
  | map7 _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   194
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   195
fun map8 _ [] [] [] [] [] [] [] [] = []
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   196
  | map8 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s) =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   197
    f x1 x2 x3 x4 x5 x6 x7 x8 :: map8 f x1s x2s x3s x4s x5s x6s x7s x8s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   198
  | map8 _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   199
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   200
fun map9 _ [] [] [] [] [] [] [] [] [] = []
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   201
  | map9 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   202
      (x9::x9s) =
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   203
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 :: map9 f x1s x2s x3s x4s x5s x6s x7s x8s x9s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   204
  | map9 _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   205
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   206
fun map10 _ [] [] [] [] [] [] [] [] [] [] = []
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   207
  | map10 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   208
      (x9::x9s) (x10::x10s) =
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   209
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 :: map10 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   210
  | map10 _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   211
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   212
fun map11 _ [] [] [] [] [] [] [] [] [] [] [] = []
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   213
  | map11 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   214
      (x9::x9s) (x10::x10s) (x11::x11s) =
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   215
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 :: map11 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   216
  | map11 _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   217
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   218
fun map12 _ [] [] [] [] [] [] [] [] [] [] [] [] = []
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   219
  | map12 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   220
      (x9::x9s) (x10::x10s) (x11::x11s) (x12::x12s) =
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   221
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 ::
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   222
      map12 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s x12s
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   223
  | map12 _ _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   224
53705
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
   225
fun map13 _ [] [] [] [] [] [] [] [] [] [] [] [] [] = []
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   226
  | map13 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   227
      (x9::x9s) (x10::x10s) (x11::x11s) (x12::x12s) (x13::x13s) =
53705
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
   228
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 ::
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
   229
      map13 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s x12s x13s
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
   230
  | map13 _ _ _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
f58e289eceba enrich data structure
blanchet
parents: 53263
diff changeset
   231
54900
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   232
fun map14 _ [] [] [] [] [] [] [] [] [] [] [] [] [] [] = []
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   233
  | map14 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   234
      (x9::x9s) (x10::x10s) (x11::x11s) (x12::x12s) (x13::x13s) (x14::x14s) =
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   235
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 ::
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   236
      map14 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s x12s x13s x14s
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   237
  | map14 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
136fe16e726a generate 'disc_iff' property in 'primcorec'
blanchet
parents: 54841
diff changeset
   238
56521
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   239
fun map15 _ [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] = []
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   240
  | map15 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   241
      (x9::x9s) (x10::x10s) (x11::x11s) (x12::x12s) (x13::x13s) (x14::x14s) (x15::x15s) =
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   242
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 ::
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   243
      map15 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s x12s x13s x14s x15s
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   244
  | map15 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
20cfb18a53ba export theorems
kuncar
parents: 56218
diff changeset
   245
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   246
fun map16 _ [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] = []
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   247
  | map16 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   248
      (x9::x9s) (x10::x10s) (x11::x11s) (x12::x12s) (x13::x13s) (x14::x14s) (x15::x15s) (x16::x16s) =
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   249
    f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 x16 ::
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   250
      map16 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s x12s x13s x14s x15s x16s
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   251
  | map16 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   252
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   253
fun fold_map4 _ [] [] [] [] acc = ([], acc)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   254
  | fold_map4 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) acc =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   255
    let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   256
      val (x, acc') = f x1 x2 x3 x4 acc;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   257
      val (xs, acc'') = fold_map4 f x1s x2s x3s x4s acc';
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   258
    in (x :: xs, acc'') end
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   259
  | fold_map4 _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   260
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   261
fun fold_map5 _ [] [] [] [] [] acc = ([], acc)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   262
  | fold_map5 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) acc =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   263
    let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   264
      val (x, acc') = f x1 x2 x3 x4 x5 acc;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   265
      val (xs, acc'') = fold_map5 f x1s x2s x3s x4s x5s acc';
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   266
    in (x :: xs, acc'') end
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   267
  | fold_map5 _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   268
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   269
fun fold_map6 _ [] [] [] [] [] [] acc = ([], acc)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   270
  | fold_map6 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) acc =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   271
    let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   272
      val (x, acc') = f x1 x2 x3 x4 x5 x6 acc;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   273
      val (xs, acc'') = fold_map6 f x1s x2s x3s x4s x5s x6s acc';
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   274
    in (x :: xs, acc'') end
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   275
  | fold_map6 _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   276
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   277
fun fold_map7 _ [] [] [] [] [] [] [] acc = ([], acc)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   278
  | fold_map7 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) acc =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   279
    let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   280
      val (x, acc') = f x1 x2 x3 x4 x5 x6 x7 acc;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   281
      val (xs, acc'') = fold_map7 f x1s x2s x3s x4s x5s x6s x7s acc';
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   282
    in (x :: xs, acc'') end
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   283
  | fold_map7 _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   284
51758
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   285
fun fold_map8 _ [] [] [] [] [] [] [] [] acc = ([], acc)
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   286
  | fold_map8 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   287
      acc =
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   288
    let
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   289
      val (x, acc') = f x1 x2 x3 x4 x5 x6 x7 x8 acc;
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   290
      val (xs, acc'') = fold_map8 f x1s x2s x3s x4s x5s x6s x7s x8s acc';
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   291
    in (x :: xs, acc'') end
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   292
  | fold_map8 _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
   293
51767
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   294
fun fold_map9 _ [] [] [] [] [] [] [] [] [] acc = ([], acc)
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   295
  | fold_map9 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s)
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   296
      (x9::x9s) acc =
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   297
    let
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   298
      val (x, acc') = f x1 x2 x3 x4 x5 x6 x7 x8 x9 acc;
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   299
      val (xs, acc'') = fold_map9 f x1s x2s x3s x4s x5s x6s x7s x8s x9s acc';
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   300
    in (x :: xs, acc'') end
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   301
  | fold_map9 _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51762
diff changeset
   302
51903
126f8d11f873 move function to library
blanchet
parents: 51894
diff changeset
   303
fun split_list4 [] = ([], [], [], [])
126f8d11f873 move function to library
blanchet
parents: 51894
diff changeset
   304
  | split_list4 ((x1, x2, x3, x4) :: xs) =
126f8d11f873 move function to library
blanchet
parents: 51894
diff changeset
   305
    let val (xs1, xs2, xs3, xs4) = split_list4 xs;
126f8d11f873 move function to library
blanchet
parents: 51894
diff changeset
   306
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4) end;
126f8d11f873 move function to library
blanchet
parents: 51894
diff changeset
   307
54841
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54601
diff changeset
   308
fun split_list5 [] = ([], [], [], [], [])
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54601
diff changeset
   309
  | split_list5 ((x1, x2, x3, x4, x5) :: xs) =
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54601
diff changeset
   310
    let val (xs1, xs2, xs3, xs4, xs5) = split_list5 xs;
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54601
diff changeset
   311
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5) end;
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54601
diff changeset
   312
58561
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
   313
fun split_list6 [] = ([], [], [], [], [], [])
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
   314
  | split_list6 ((x1, x2, x3, x4, x5, x6) :: xs) =
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
   315
    let val (xs1, xs2, xs3, xs4, xs5, xs6) = split_list6 xs;
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
   316
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6) end;
7d7473b54fe0 add 'map_sels' to 'fp_sugar'
desharna
parents: 58446
diff changeset
   317
58562
e94cd4f71d0c add 'rel_sels' to 'fp_sugar'
desharna
parents: 58561
diff changeset
   318
fun split_list7 [] = ([], [], [], [], [], [], [])
e94cd4f71d0c add 'rel_sels' to 'fp_sugar'
desharna
parents: 58561
diff changeset
   319
  | split_list7 ((x1, x2, x3, x4, x5, x6, x7) :: xs) =
e94cd4f71d0c add 'rel_sels' to 'fp_sugar'
desharna
parents: 58561
diff changeset
   320
    let val (xs1, xs2, xs3, xs4, xs5, xs6, xs7) = split_list7 xs;
e94cd4f71d0c add 'rel_sels' to 'fp_sugar'
desharna
parents: 58561
diff changeset
   321
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6, x7 :: xs7) end;
e94cd4f71d0c add 'rel_sels' to 'fp_sugar'
desharna
parents: 58561
diff changeset
   322
58563
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
   323
fun split_list8 [] = ([], [], [], [], [], [], [], [])
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
   324
  | split_list8 ((x1, x2, x3, x4, x5, x6, x7, x8) :: xs) =
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
   325
    let val (xs1, xs2, xs3, xs4, xs5, xs6, xs7, xs8) = split_list8 xs;
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
   326
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6, x7 :: xs7, x8 :: xs8) end;
f5019700efa5 add 'rel_intros' to 'fp_sugar'
desharna
parents: 58562
diff changeset
   327
58564
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
   328
fun split_list9 [] = ([], [], [], [], [], [], [], [], [])
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
   329
  | split_list9 ((x1, x2, x3, x4, x5, x6, x7, x8, x9) :: xs) =
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
   330
    let val (xs1, xs2, xs3, xs4, xs5, xs6, xs7, xs8, xs9) = split_list9 xs;
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
   331
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6, x7 :: xs7, x8 :: xs8,
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
   332
        x9 :: xs9) end;
778a80674112 add 'rel_cases' to 'fp_sugar'
desharna
parents: 58563
diff changeset
   333
58566
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
   334
fun split_list10 [] = ([], [], [], [], [], [], [], [], [], [])
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
   335
  | split_list10 ((x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) :: xs) =
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
   336
    let val (xs1, xs2, xs3, xs4, xs5, xs6, xs7, xs8, xs9, xs10) = split_list10 xs;
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
   337
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6, x7 :: xs7, x8 :: xs8,
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
   338
        x9 :: xs9, x10 :: xs10) end;
62aa83edad7e add 'set_sels' to 'fp_sugar'
desharna
parents: 58564
diff changeset
   339
58567
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
   340
fun split_list11 [] = ([], [], [], [], [], [], [], [], [], [], [])
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
   341
  | split_list11 ((x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) :: xs) =
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
   342
    let val (xs1, xs2, xs3, xs4, xs5, xs6, xs7, xs8, xs9, xs10, xs11) = split_list11 xs;
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
   343
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6, x7 :: xs7, x8 :: xs8,
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
   344
        x9 :: xs9, x10 :: xs10, x11 :: xs11) end;
f0d09e17edba add 'set_intros' to 'fp_sugar'
desharna
parents: 58566
diff changeset
   345
58568
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
   346
fun split_list12 [] = ([], [], [], [], [], [], [], [], [], [], [], [])
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
   347
  | split_list12 ((x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) :: xs) =
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
   348
    let val (xs1, xs2, xs3, xs4, xs5, xs6, xs7, xs8, xs9, xs10, xs11, xs12) = split_list12 xs;
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
   349
    in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4, x5 :: xs5, x6 :: xs6, x7 :: xs7, x8 :: xs8,
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
   350
        x9 :: xs9, x10 :: xs10, x11 :: xs11, x12 :: xs12) end;
727e014c6dbd add 'set_cases' to 'fp_sugar'
desharna
parents: 58567
diff changeset
   351
54601
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   352
val parse_type_arg_constrained =
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   353
  Parse.type_ident -- Scan.option (@{keyword "::"} |-- Parse.!!! Parse.sort);
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   354
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   355
val parse_type_arg_named_constrained =
57092
59603f4f1d2e changed '-:' to 'dead' in BNF
blanchet
parents: 57091
diff changeset
   356
   (Parse.reserved "dead" >> K NONE || parse_opt_binding_colon >> SOME) --
54601
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   357
   parse_type_arg_constrained;
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   358
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   359
val parse_type_args_named_constrained =
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   360
  parse_type_arg_constrained >> (single o pair (SOME Binding.empty)) ||
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   361
  @{keyword "("} |-- Parse.!!! (Parse.list1 parse_type_arg_named_constrained --| @{keyword ")"}) ||
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   362
  Scan.succeed [];
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   363
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 56765
diff changeset
   364
val parse_map_rel_binding = Parse.short_ident --| @{keyword ":"} -- Parse.binding;
54601
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   365
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   366
val no_map_rel = (Binding.empty, Binding.empty);
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   367
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   368
fun extract_map_rel ("map", b) = apfst (K b)
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   369
  | extract_map_rel ("rel", b) = apsnd (K b)
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   370
  | extract_map_rel (s, _) = error ("Unknown label " ^ quote s ^ " (expected \"map\" or \"rel\")");
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   371
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   372
val parse_map_rel_bindings =
57206
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   373
  @{keyword "for"} |-- Scan.repeat parse_map_rel_binding
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   374
    >> (fn ps => fold extract_map_rel ps no_map_rel)
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   375
  || Scan.succeed no_map_rel;
54601
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   376
58179
2de7b0313de3 tuned size function generation
blanchet
parents: 57529
diff changeset
   377
fun map_local_theory f = Named_Target.theory_init #> f #> Local_Theory.exit_global;
54601
91a1e4aa7c80 command for axiomatic declaration of bnfs---allow theoreticians to fix an arbitrary type with functorial structure and work abstractly on it
traytel
parents: 54544
diff changeset
   378
53263
d4784d3d3a54 rationalized bindings
blanchet
parents: 53040
diff changeset
   379
fun typedef (b, Ts, mx) set opt_morphs tac lthy =
49228
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   380
  let
53263
d4784d3d3a54 rationalized bindings
blanchet
parents: 53040
diff changeset
   381
    (*Work around loss of qualification in "typedef" axioms by replicating it in the name*)
d4784d3d3a54 rationalized bindings
blanchet
parents: 53040
diff changeset
   382
    val b' = fold_rev Binding.prefix_name (map (suffix "_" o fst) (#2 (Binding.dest b))) b;
49228
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   383
    val ((name, info), (lthy, lthy_old)) =
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   384
      lthy
58239
1c5bc387bd4c added flag to 'typedef' to allow concealed definitions
blanchet
parents: 58208
diff changeset
   385
      |> Typedef.add_typedef true (b', Ts, mx) set opt_morphs tac
49228
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   386
      ||> `Local_Theory.restore;
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   387
    val phi = Proof_Context.export_morphism lthy_old lthy;
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   388
  in
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   389
    ((name, Typedef.transform_info phi info), lthy)
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   390
  end;
e43910ccee74 open typedefs everywhere in the package
traytel
parents: 49212
diff changeset
   391
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   392
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   393
(* Term construction *)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   394
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   395
(** Fresh variables **)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   396
49425
f27f83f71e94 cleaned up internal naming scheme for bnfs
traytel
parents: 49395
diff changeset
   397
fun nonzero_string_of_int 0 = ""
f27f83f71e94 cleaned up internal naming scheme for bnfs
traytel
parents: 49395
diff changeset
   398
  | nonzero_string_of_int n = string_of_int n;
f27f83f71e94 cleaned up internal naming scheme for bnfs
traytel
parents: 49395
diff changeset
   399
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49282
diff changeset
   400
val mk_TFreess = fold_map mk_TFrees;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   401
49177
db8ce685073f introduced and used "mk_Freesss", and simplified "mk_Freess(')"
blanchet
parents: 49176
diff changeset
   402
fun mk_Freesss x Tsss = fold_map2 mk_Freess (mk_names (length Tsss) x) Tsss;
49200
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49178
diff changeset
   403
fun mk_Freessss x Tssss = fold_map2 mk_Freesss (mk_names (length Tssss) x) Tssss;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   404
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   405
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   406
(** Types **)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   407
53036
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   408
(*maps [T1,...,Tn]--->T to ([T1,T2,...,Tn], T)*)
49395
323414474c1f use strip_typeN in bnf_def (instead of repairing strip_type)
traytel
parents: 49366
diff changeset
   409
fun strip_typeN 0 T = ([], T)
323414474c1f use strip_typeN in bnf_def (instead of repairing strip_type)
traytel
parents: 49366
diff changeset
   410
  | strip_typeN n (Type (@{type_name fun}, [T, T'])) = strip_typeN (n - 1) T' |>> cons T
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49434
diff changeset
   411
  | strip_typeN _ T = raise TYPE ("strip_typeN", [T], []);
49395
323414474c1f use strip_typeN in bnf_def (instead of repairing strip_type)
traytel
parents: 49366
diff changeset
   412
53036
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   413
(*maps [T1,...,Tn]--->T-->U to ([T1,T2,...,Tn], T-->U), where U is not a function type*)
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   414
fun strip_fun_type T = strip_typeN (num_binder_types T - 1) T;
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   415
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   416
val binder_fun_types = fst o strip_fun_type;
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   417
val body_fun_type = snd o strip_fun_type;
7dd103c29f9d added more functions to BNF library
blanchet
parents: 53035
diff changeset
   418
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49434
diff changeset
   419
fun mk_pred2T T U = mk_predT [T, U];
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   420
val mk_relT = HOLogic.mk_setT o HOLogic.mk_prodT;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   421
val dest_relT = HOLogic.dest_prodT o HOLogic.dest_setT;
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   422
val dest_pred2T = apsnd Term.domain_type o Term.dest_funT;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   423
fun mk_sumT (LT, RT) = Type (@{type_name Sum_Type.sum}, [LT, RT]);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   424
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   425
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   426
(** Constants **)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   427
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   428
fun fst_const T = Const (@{const_name fst}, T --> fst (HOLogic.dest_prodT T));
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   429
fun snd_const T = Const (@{const_name snd}, T --> snd (HOLogic.dest_prodT T));
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   430
fun Id_const T = Const (@{const_name Id}, mk_relT (T, T));
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   431
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   432
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   433
(** Operators **)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   434
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   435
fun mk_converse R =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   436
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   437
    val RT = dest_relT (fastype_of R);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   438
    val RST = mk_relT (snd RT, fst RT);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   439
  in Const (@{const_name converse}, fastype_of R --> RST) $ R end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   440
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   441
fun mk_rel_comp (R, S) =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   442
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   443
    val RT = fastype_of R;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   444
    val ST = fastype_of S;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   445
    val RST = mk_relT (fst (dest_relT RT), snd (dest_relT ST));
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   446
  in Const (@{const_name relcomp}, RT --> ST --> RST) $ R $ S end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   447
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   448
fun mk_Gr A f =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   449
  let val ((AT, BT), FT) = `dest_funT (fastype_of f);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   450
  in Const (@{const_name Gr}, HOLogic.mk_setT AT --> FT --> mk_relT (AT, BT)) $ A $ f end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   451
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   452
fun mk_conversep R =
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   453
  let
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   454
    val RT = dest_pred2T (fastype_of R);
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   455
    val RST = mk_pred2T (snd RT) (fst RT);
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   456
  in Const (@{const_name conversep}, fastype_of R --> RST) $ R end;
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   457
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   458
fun mk_rel_compp (R, S) =
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   459
  let
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   460
    val RT = fastype_of R;
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   461
    val ST = fastype_of S;
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   462
    val RST = mk_pred2T (fst (dest_pred2T RT)) (snd (dest_pred2T ST));
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   463
  in Const (@{const_name relcompp}, RT --> ST --> RST) $ R $ S end;
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   464
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   465
fun mk_Grp A f =
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   466
  let val ((AT, BT), FT) = `dest_funT (fastype_of f);
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   467
  in Const (@{const_name Grp}, HOLogic.mk_setT AT --> FT --> mk_pred2T AT BT) $ A $ f end;
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   468
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   469
fun mk_image f =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   470
  let val (T, U) = dest_funT (fastype_of f);
55573
blanchet
parents: 55571
diff changeset
   471
  in Const (@{const_name image}, (T --> U) --> HOLogic.mk_setT T --> HOLogic.mk_setT U) $ f end;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   472
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   473
fun mk_Ball X f =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   474
  Const (@{const_name Ball}, fastype_of X --> fastype_of f --> HOLogic.boolT) $ X $ f;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   475
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   476
fun mk_Bex X f =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   477
  Const (@{const_name Bex}, fastype_of X --> fastype_of f --> HOLogic.boolT) $ X $ f;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   478
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   479
fun mk_UNION X f =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   480
  let val (T, U) = dest_funT (fastype_of f);
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 55945
diff changeset
   481
  in Const (@{const_name SUPREMUM}, fastype_of X --> (T --> U) --> U) $ X $ f end;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   482
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   483
fun mk_Union T =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   484
  Const (@{const_name Sup}, HOLogic.mk_setT (HOLogic.mk_setT T) --> HOLogic.mk_setT T);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   485
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   486
fun mk_Field r =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   487
  let val T = fst (dest_relT (fastype_of r));
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   488
  in Const (@{const_name Field}, mk_relT (T, T) --> HOLogic.mk_setT T) $ r end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   489
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   490
fun mk_card_order bd =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   491
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   492
    val T = fastype_of bd;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   493
    val AT = fst (dest_relT T);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   494
  in
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   495
    Const (@{const_name card_order_on}, HOLogic.mk_setT AT --> T --> HOLogic.boolT) $
55571
a6153343c44f prepare two-stage 'primrec' setup
blanchet
parents: 55469
diff changeset
   496
      HOLogic.mk_UNIV AT $ bd
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   497
  end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   498
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   499
fun mk_Card_order bd =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   500
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   501
    val T = fastype_of bd;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   502
    val AT = fst (dest_relT T);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   503
  in
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   504
    Const (@{const_name card_order_on}, HOLogic.mk_setT AT --> T --> HOLogic.boolT) $
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   505
      mk_Field bd $ bd
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   506
  end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   507
55573
blanchet
parents: 55571
diff changeset
   508
fun mk_cinfinite bd = Const (@{const_name cinfinite}, fastype_of bd --> HOLogic.boolT) $ bd;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   509
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   510
fun mk_ordLeq t1 t2 =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   511
  HOLogic.mk_mem (HOLogic.mk_prod (t1, t2),
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   512
    Const (@{const_name ordLeq}, mk_relT (fastype_of t1, fastype_of t2)));
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   513
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   514
fun mk_card_of A =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   515
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   516
    val AT = fastype_of A;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   517
    val T = HOLogic.dest_setT AT;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   518
  in
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   519
    Const (@{const_name card_of}, AT --> mk_relT (T, T)) $ A
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   520
  end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   521
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   522
fun mk_dir_image r f =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   523
  let val (T, U) = dest_funT (fastype_of f);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   524
  in Const (@{const_name dir_image}, mk_relT (T, T) --> (T --> U) --> mk_relT (U, U)) $ r $ f end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   525
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55856
diff changeset
   526
fun mk_rel_fun R S =
52719
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52545
diff changeset
   527
  let
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52545
diff changeset
   528
    val ((RA, RB), RT) = `dest_pred2T (fastype_of R);
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52545
diff changeset
   529
    val ((SA, SB), ST) = `dest_pred2T (fastype_of S);
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55856
diff changeset
   530
  in Const (@{const_name rel_fun}, RT --> ST --> mk_pred2T (RA --> SA) (RB --> SB)) $ R $ S end;
52719
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52545
diff changeset
   531
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   532
(*FIXME: "x"?*)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   533
(*(nth sets i) must be of type "T --> 'ai set"*)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   534
fun mk_in As sets T =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   535
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   536
    fun in_single set A =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   537
      let val AT = fastype_of A;
58208
blanchet
parents: 58179
diff changeset
   538
      in Const (@{const_name less_eq}, AT --> AT --> HOLogic.boolT) $ (set $ Free ("x", T)) $ A end;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   539
  in
58208
blanchet
parents: 58179
diff changeset
   540
    if null sets then HOLogic.mk_UNIV T
blanchet
parents: 58179
diff changeset
   541
    else HOLogic.mk_Collect ("x", T, foldr1 (HOLogic.mk_conj) (map2 in_single sets As))
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   542
  end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   543
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 56521
diff changeset
   544
fun mk_inj t =
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56640
diff changeset
   545
  let val T as Type (@{type_name fun}, [domT, _]) = fastype_of t in
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 56521
diff changeset
   546
    Const (@{const_name inj_on}, T --> HOLogic.mk_setT domT --> HOLogic.boolT) $ t
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 56521
diff changeset
   547
      $ HOLogic.mk_UNIV domT
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 56521
diff changeset
   548
  end;
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 56521
diff changeset
   549
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51861
diff changeset
   550
fun mk_leq t1 t2 =
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   551
  Const (@{const_name less_eq}, (fastype_of t1) --> (fastype_of t2) --> HOLogic.boolT) $ t1 $ t2;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   552
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   553
fun mk_card_binop binop typop t1 t2 =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   554
  let
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   555
    val (T1, relT1) = `(fst o dest_relT) (fastype_of t1);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   556
    val (T2, relT2) = `(fst o dest_relT) (fastype_of t2);
55573
blanchet
parents: 55571
diff changeset
   557
  in Const (binop, relT1 --> relT2 --> mk_relT (typop (T1, T2), typop (T1, T2))) $ t1 $ t2 end;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   558
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   559
val mk_csum = mk_card_binop @{const_name csum} mk_sumT;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   560
val mk_cprod = mk_card_binop @{const_name cprod} HOLogic.mk_prodT;
52545
d2ad6eae514f Func -> Func_option, Ffunc -> Func (avoids dependence of codatatypes on the option type)
traytel
parents: 52280
diff changeset
   561
val mk_cexp = mk_card_binop @{const_name cexp} (op --> o swap);
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   562
val ctwo = @{term ctwo};
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   563
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   564
fun mk_collect xs defT =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   565
  let val T = (case xs of [] => defT | (x::_) => fastype_of x);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   566
  in Const (@{const_name collect}, HOLogic.mk_setT T --> T) $ (HOLogic.mk_set T xs) end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   567
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   568
fun mk_vimage2p f g =
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   569
  let
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   570
    val (T1, T2) = dest_funT (fastype_of f);
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   571
    val (U1, U2) = dest_funT (fastype_of g);
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   572
  in
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   573
    Const (@{const_name vimage2p},
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   574
      (T1 --> T2) --> (U1 --> U2) --> mk_pred2T T2 U2 --> mk_pred2T T1 U1) $ f $ g
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   575
  end;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   576
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   577
fun mk_trans thm1 thm2 = trans OF [thm1, thm2];
52913
2d2d9d1de1a9 theorems relating {c,d}tor_(un)fold/(co)rec and {c,d}tor_map
traytel
parents: 52719
diff changeset
   578
fun mk_sym thm = thm RS sym;
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   579
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   580
(*TODO: antiquote heavily used theorems once*)
57529
5e83df79eaa0 refactor some tactics
desharna
parents: 57206
diff changeset
   581
val eqTrueI = @{thm iffD2[OF eq_True]};
5e83df79eaa0 refactor some tactics
desharna
parents: 57206
diff changeset
   582
val eqFalseI =  @{thm iffD2[OF eq_False]};
56765
644f0d4820a1 cleaner 'rel_inject' theorems
blanchet
parents: 56648
diff changeset
   583
val prod_injectD = @{thm iffD1[OF prod.inject]};
644f0d4820a1 cleaner 'rel_inject' theorems
blanchet
parents: 56648
diff changeset
   584
val prod_injectI = @{thm iffD2[OF prod.inject]};
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   585
val ctrans = @{thm ordLeq_transitive};
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   586
val id_apply = @{thm id_apply};
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   587
val meta_mp = @{thm meta_mp};
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   588
val meta_spec = @{thm meta_spec};
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   589
val o_apply = @{thm o_apply};
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   590
val rel_funD = @{thm rel_funD};
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   591
val rel_funI = @{thm rel_funI};
49488
02eb07152998 use iffD* instead of (s)subst instantiated with identity; tuned antiquotations;
traytel
parents: 49484
diff changeset
   592
val set_mp = @{thm set_mp};
02eb07152998 use iffD* instead of (s)subst instantiated with identity; tuned antiquotations;
traytel
parents: 49484
diff changeset
   593
val set_rev_mp = @{thm set_rev_mp};
49490
394870e51d18 tuned antiquotations
traytel
parents: 49488
diff changeset
   594
val subset_UNIV = @{thm subset_UNIV};
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   595
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   596
fun mk_nthN 1 t 1 = t
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   597
  | mk_nthN _ t 1 = HOLogic.mk_fst t
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   598
  | mk_nthN 2 t 2 = HOLogic.mk_snd t
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   599
  | mk_nthN n t m = mk_nthN (n - 1) (HOLogic.mk_snd t) (m - 1);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   600
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   601
fun mk_nth_conv n m =
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   602
  let
54544
7d23f8e501d4 killed more needless thms
blanchet
parents: 54540
diff changeset
   603
    fun thm b = if b then @{thm fstI} else @{thm sndI}
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   604
    fun mk_nth_conv _ 1 1 = refl
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   605
      | mk_nth_conv _ _ 1 = @{thm fst_conv}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   606
      | mk_nth_conv _ 2 2 = @{thm snd_conv}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   607
      | mk_nth_conv b _ 2 = @{thm snd_conv} RS thm b
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   608
      | mk_nth_conv b n m = mk_nth_conv false (n - 1) (m - 1) RS thm b;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   609
  in mk_nth_conv (not (m = n)) n m end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   610
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   611
fun mk_nthI 1 1 = @{thm TrueE[OF TrueI]}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   612
  | mk_nthI n m = fold (curry op RS) (replicate (m - 1) @{thm sndI})
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   613
    (if m = n then @{thm TrueE[OF TrueI]} else @{thm fstI});
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   614
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   615
fun mk_conjIN 1 = @{thm TrueE[OF TrueI]}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   616
  | mk_conjIN n = mk_conjIN (n - 1) RSN (2, conjI);
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   617
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   618
fun mk_ordLeq_csum 1 1 thm = thm
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   619
  | mk_ordLeq_csum _ 1 thm = @{thm ordLeq_transitive} OF [thm, @{thm ordLeq_csum1}]
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   620
  | mk_ordLeq_csum 2 2 thm = @{thm ordLeq_transitive} OF [thm, @{thm ordLeq_csum2}]
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   621
  | mk_ordLeq_csum n m thm = @{thm ordLeq_transitive} OF
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   622
    [mk_ordLeq_csum (n - 1) (m - 1) thm, @{thm ordLeq_csum2[OF Card_order_csum]}];
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   623
58446
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   624
fun mk_rel_funDN n = funpow n (fn thm => thm RS @{thm rel_funD});
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   625
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   626
val mk_rel_funDN_rotated = rotate_prems ~1 oo mk_rel_funDN;
e89f57d1e46c generate 'rec_transfer' for datatypes
desharna
parents: 58240
diff changeset
   627
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   628
local
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   629
  fun mk_Un_upper' 0 = subset_refl
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   630
    | mk_Un_upper' 1 = @{thm Un_upper1}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   631
    | mk_Un_upper' k = Library.foldr (op RS o swap)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   632
      (replicate (k - 1) @{thm subset_trans[OF Un_upper1]}, @{thm Un_upper1});
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   633
in
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   634
  fun mk_Un_upper 1 1 = subset_refl
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   635
    | mk_Un_upper n 1 = mk_Un_upper' (n - 2) RS @{thm subset_trans[OF Un_upper1]}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   636
    | mk_Un_upper n m = mk_Un_upper' (n - m) RS @{thm subset_trans[OF Un_upper2]};
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   637
end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   638
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   639
local
49366
3edd1c90f6e6 renamed "mk_UnN" to "mk_UnIN"
blanchet
parents: 49342
diff changeset
   640
  fun mk_UnIN' 0 = @{thm UnI2}
3edd1c90f6e6 renamed "mk_UnN" to "mk_UnIN"
blanchet
parents: 49342
diff changeset
   641
    | mk_UnIN' m = mk_UnIN' (m - 1) RS @{thm UnI1};
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   642
in
49366
3edd1c90f6e6 renamed "mk_UnN" to "mk_UnIN"
blanchet
parents: 49342
diff changeset
   643
  fun mk_UnIN 1 1 = @{thm TrueE[OF TrueI]}
3edd1c90f6e6 renamed "mk_UnN" to "mk_UnIN"
blanchet
parents: 49342
diff changeset
   644
    | mk_UnIN n 1 = Library.foldr1 (op RS o swap) (replicate (n - 1) @{thm UnI1})
3edd1c90f6e6 renamed "mk_UnN" to "mk_UnIN"
blanchet
parents: 49342
diff changeset
   645
    | mk_UnIN n m = mk_UnIN' (n - m)
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   646
end;
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   647
57205
blanchet
parents: 57092
diff changeset
   648
fun is_refl_bool t =
blanchet
parents: 57092
diff changeset
   649
  op aconv (HOLogic.dest_eq t)
blanchet
parents: 57092
diff changeset
   650
  handle TERM _ => false;
blanchet
parents: 57092
diff changeset
   651
49605
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   652
fun is_refl_prop t =
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   653
  op aconv (HOLogic.dest_eq (HOLogic.dest_Trueprop t))
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   654
  handle TERM _ => false;
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   655
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   656
val is_refl = is_refl_prop o Thm.prop_of;
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   657
val is_concl_refl = is_refl_prop o Logic.strip_imp_concl o Thm.prop_of;
ea566f5e1724 avoid another brand of trivial "disc_rel" theorems (which made the simplifier loop for all single-constructor types)
blanchet
parents: 49585
diff changeset
   658
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   659
val no_refl = filter_out is_refl;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   660
val no_reflexive = filter_out Thm.is_reflexive;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49463
diff changeset
   661
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49490
diff changeset
   662
fun fold_thms ctxt thms = Local_Defs.fold ctxt (distinct Thm.eq_thm_prop thms);
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49434
diff changeset
   663
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   664
end;