| author | wenzelm | 
| Sun, 04 Jan 2015 16:45:41 +0100 | |
| changeset 59261 | 5e7280814916 | 
| parent 59058 | a78612c67ec0 | 
| child 59484 | a130ae7a9398 | 
| permissions | -rw-r--r-- | 
| 33265 | 1 | (* Title: HOL/Tools/Predicate_Compile/predicate_compile_aux.ML | 
| 2 | Author: Lukas Bulwahn, TU Muenchen | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 3 | |
| 33265 | 4 | Auxilary functions for predicate compiler. | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 5 | *) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 6 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 7 | signature PREDICATE_COMPILE_AUX = | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 8 | sig | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 9 |   val find_indices : ('a -> bool) -> 'a list -> int list
 | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 10 | (* mode *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 11 | datatype mode = Bool | Input | Output | Pair of mode * mode | Fun of mode * mode | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 12 | val eq_mode : mode * mode -> bool | 
| 39311 | 13 | val mode_ord: mode * mode -> order | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 14 | val list_fun_mode : mode list -> mode | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 15 | val strip_fun_mode : mode -> mode list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 16 | val dest_fun_mode : mode -> mode list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 17 | val dest_tuple_mode : mode -> mode list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 18 | val all_modes_of_typ : typ -> mode list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 19 | val all_smodes_of_typ : typ -> mode list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 20 |   val fold_map_aterms_prodT : ('a -> 'a -> 'a) -> (typ -> 'b -> 'a * 'b) -> typ -> 'b -> 'a * 'b
 | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 21 | val map_filter_prod : (term -> term option) -> term -> term option | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 22 | val replace_ho_args : mode -> term list -> term list -> term list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 23 | val ho_arg_modes_of : mode -> mode list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 24 | val ho_argsT_of : mode -> typ list -> typ list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 25 | val ho_args_of : mode -> term list -> term list | 
| 39299 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 26 | val ho_args_of_typ : typ -> term list -> term list | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 27 | val ho_argsT_of_typ : typ list -> typ list | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 28 | val split_map_mode : (mode -> term -> term option * term option) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 29 | -> mode -> term list -> term list * term list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 30 | val split_map_modeT : (mode -> typ -> typ option * typ option) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 31 | -> mode -> typ list -> typ list * typ list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 32 | val split_mode : mode -> term list -> term list * term list | 
| 40139 | 33 | val split_modeT : mode -> typ list -> typ list * typ list | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 34 | val string_of_mode : mode -> string | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 35 | val ascii_string_of_mode : mode -> string | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 36 | (* premises *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 37 | datatype indprem = Prem of term | Negprem of term | Sidecond of term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 38 | | Generator of (string * typ) | 
| 36251 
5fd5d732a4ea
only add relevant predicates to the list of extra modes
 bulwahn parents: 
36248diff
changeset | 39 | val dest_indprem : indprem -> term | 
| 36254 | 40 | val map_indprem : (term -> term) -> indprem -> indprem | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 41 | (* general syntactic functions *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 42 | val is_equationlike : thm -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 43 | val is_pred_equation : thm -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 44 | val is_intro : string -> thm -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 45 | val is_predT : typ -> bool | 
| 55399 | 46 | val get_constrs : theory -> (string * (int * string)) list | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 47 | val is_constrt : theory -> term -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 48 | val is_constr : Proof.context -> string -> bool | 
| 42094 
e6867e9c6d10
allowing special set comprehensions in values command; adding an example for special set comprehension in values
 bulwahn parents: 
41228diff
changeset | 49 | val strip_ex : term -> (string * typ) list * term | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 50 | val focus_ex : term -> Name.context -> ((string * typ) list * term) * Name.context | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 51 | val strip_all : term -> (string * typ) list * term | 
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 52 | val strip_intro_concl : thm -> term * term list | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 53 | (* introduction rule combinators *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 54 | val map_atoms : (term -> term) -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 55 | val fold_atoms : (term -> 'a -> 'a) -> term -> 'a -> 'a | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 56 | val fold_map_atoms : (term -> 'a -> term * 'a) -> term -> 'a -> term * 'a | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 57 | val maps_premises : (term -> term list) -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 58 | val map_concl : (term -> term) -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 59 | val map_term : theory -> (term -> term) -> thm -> thm | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 60 | (* split theorems of case expressions *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 61 | val prepare_split_thm : Proof.context -> thm -> thm | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 62 | val find_split_thm : theory -> term -> thm option | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 63 | (* datastructures and setup for generic compilation *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 64 |   datatype compilation_funs = CompilationFuns of {
 | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 65 | mk_monadT : typ -> typ, | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 66 | dest_monadT : typ -> typ, | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 67 | mk_empty : typ -> term, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 68 | mk_single : term -> term, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 69 | mk_bind : term * term -> term, | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 70 | mk_plus : term * term -> term, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 71 | mk_if : term -> term, | 
| 36049 
0ce5b7a5c2fd
adding iterate_upto interface in compilations and iterate_upto functions in Isabelle theories for arithmetic setup of the predicate compiler
 bulwahn parents: 
36047diff
changeset | 72 | mk_iterate_upto : typ -> term * term * term -> term, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 73 | mk_not : term -> term, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 74 | mk_map : typ -> typ -> term -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 75 | }; | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 76 | val mk_monadT : compilation_funs -> typ -> typ | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 77 | val dest_monadT : compilation_funs -> typ -> typ | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 78 | val mk_empty : compilation_funs -> typ -> term | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 79 | val mk_single : compilation_funs -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 80 | val mk_bind : compilation_funs -> term * term -> term | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 81 | val mk_plus : compilation_funs -> term * term -> term | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 82 | val mk_if : compilation_funs -> term -> term | 
| 36049 
0ce5b7a5c2fd
adding iterate_upto interface in compilations and iterate_upto functions in Isabelle theories for arithmetic setup of the predicate compiler
 bulwahn parents: 
36047diff
changeset | 83 | val mk_iterate_upto : compilation_funs -> typ -> term * term * term -> term | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 84 | val mk_not : compilation_funs -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 85 | val mk_map : compilation_funs -> typ -> typ -> term -> term -> term | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 86 | val funT_of : compilation_funs -> mode -> typ -> typ | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 87 | (* Different compilations *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 88 | datatype compilation = Pred | Depth_Limited | Random | Depth_Limited_Random | DSeq | Annotated | 
| 55437 | 89 | | Pos_Random_DSeq | Neg_Random_DSeq | New_Pos_Random_DSeq | New_Neg_Random_DSeq | 
| 45450 | 90 | | Pos_Generator_DSeq | Neg_Generator_DSeq | Pos_Generator_CPS | Neg_Generator_CPS | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 91 | val negative_compilation_of : compilation -> compilation | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 92 | val compilation_for_polarity : bool -> compilation -> compilation | 
| 55437 | 93 | val is_depth_limited_compilation : compilation -> bool | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 94 | val string_of_compilation : compilation -> string | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 95 | val compilation_names : (string * compilation) list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 96 | val non_random_compilations : compilation list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 97 | val random_compilations : compilation list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 98 | (* Different options for compiler *) | 
| 55437 | 99 |   datatype options = Options of {
 | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 100 | expected_modes : (string * mode list) option, | 
| 39382 
c797f3ab2ae1
proposed modes for code_pred now supports modes for mutual predicates
 bulwahn parents: 
39312diff
changeset | 101 | proposed_modes : (string * mode list) list, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 102 | proposed_names : ((string * mode) * string) list, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 103 | show_steps : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 104 | show_proof_trace : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 105 | show_intermediate_results : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 106 | show_mode_inference : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 107 | show_modes : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 108 | show_compilation : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 109 | show_caught_failures : bool, | 
| 39383 
ddfafa97da2f
adding option show_invalid_clauses for a more detailed message when modes are not inferred
 bulwahn parents: 
39382diff
changeset | 110 | show_invalid_clauses : bool, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 111 | skip_proof : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 112 | no_topmost_reordering : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 113 | function_flattening : bool, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 114 | fail_safe_function_flattening : bool, | 
| 36248 
9ed1a37de465
added option for specialisation to the predicate compiler
 bulwahn parents: 
36246diff
changeset | 115 | specialise : bool, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 116 | no_higher_order_predicate : string list, | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 117 | inductify : bool, | 
| 36254 | 118 | detect_switches : bool, | 
| 40048 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 119 | smart_depth_limiting : bool, | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 120 | compilation : compilation | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 121 | }; | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 122 | val expected_modes : options -> (string * mode list) option | 
| 39382 
c797f3ab2ae1
proposed modes for code_pred now supports modes for mutual predicates
 bulwahn parents: 
39312diff
changeset | 123 | val proposed_modes : options -> string -> mode list option | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 124 | val proposed_names : options -> string -> mode -> string option | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 125 | val show_steps : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 126 | val show_proof_trace : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 127 | val show_intermediate_results : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 128 | val show_mode_inference : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 129 | val show_modes : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 130 | val show_compilation : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 131 | val show_caught_failures : options -> bool | 
| 39383 
ddfafa97da2f
adding option show_invalid_clauses for a more detailed message when modes are not inferred
 bulwahn parents: 
39382diff
changeset | 132 | val show_invalid_clauses : options -> bool | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 133 | val skip_proof : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 134 | val no_topmost_reordering : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 135 | val function_flattening : options -> bool | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 136 | val fail_safe_function_flattening : options -> bool | 
| 36248 
9ed1a37de465
added option for specialisation to the predicate compiler
 bulwahn parents: 
36246diff
changeset | 137 | val specialise : options -> bool | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 138 | val no_higher_order_predicate : options -> string list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 139 | val is_inductify : options -> bool | 
| 36254 | 140 | val detect_switches : options -> bool | 
| 40048 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 141 | val smart_depth_limiting : options -> bool | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 142 | val compilation : options -> compilation | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 143 | val default_options : options | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 144 | val bool_options : string list | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 145 | val print_step : options -> string -> unit | 
| 39657 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 146 | (* conversions *) | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 147 | val imp_prems_conv : conv -> conv | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 148 | (* simple transformations *) | 
| 39787 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 149 | val split_conjuncts_in_assms : Proof.context -> thm -> thm | 
| 40052 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 150 | val dest_conjunct_prem : thm -> thm list | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 151 | val expand_tuples : theory -> thm -> thm | 
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 152 | val case_betapply : theory -> term -> term | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 153 | val eta_contract_ho_arguments : theory -> thm -> thm | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 154 | val remove_equalities : theory -> thm -> thm | 
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 155 | val remove_pointless_clauses : thm -> thm list | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 156 | val peephole_optimisation : theory -> thm -> thm option | 
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 157 | (* auxillary *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 158 | val unify_consts : theory -> term list -> term list -> (term list * term list) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 159 | val mk_casesrule : Proof.context -> term -> thm list -> term | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 160 | val preprocess_intro : theory -> thm -> thm | 
| 55437 | 161 | |
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 162 | val define_quickcheck_predicate : | 
| 40052 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 163 | term -> theory -> (((string * typ) * (string * typ) list) * thm) * theory | 
| 55440 | 164 | end | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 165 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 166 | structure Predicate_Compile_Aux : PREDICATE_COMPILE_AUX = | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 167 | struct | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 168 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 169 | (* general functions *) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 170 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 171 | fun comb_option f (SOME x1, SOME x2) = SOME (f (x1, x2)) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 172 | | comb_option f (NONE, SOME x2) = SOME x2 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 173 | | comb_option f (SOME x1, NONE) = SOME x1 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 174 | | comb_option f (NONE, NONE) = NONE | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 175 | |
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 176 | fun map2_optional f (x :: xs) (y :: ys) = f x (SOME y) :: (map2_optional f xs ys) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 177 | | map2_optional f (x :: xs) [] = (f x NONE) :: (map2_optional f xs []) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 178 | | map2_optional f [] [] = [] | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 179 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 180 | fun find_indices f xs = | 
| 46662 | 181 | map_filter (fn (i, true) => SOME i | (_, false) => NONE) (map_index (apsnd f) xs) | 
| 33328 
1d93dd8a02c9
moved datatype mode and string functions to the auxillary structure
 bulwahn parents: 
33327diff
changeset | 182 | |
| 
1d93dd8a02c9
moved datatype mode and string functions to the auxillary structure
 bulwahn parents: 
33327diff
changeset | 183 | (* mode *) | 
| 
1d93dd8a02c9
moved datatype mode and string functions to the auxillary structure
 bulwahn parents: 
33327diff
changeset | 184 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 185 | datatype mode = Bool | Input | Output | Pair of mode * mode | Fun of mode * mode | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 186 | |
| 33623 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 187 | (* equality of instantiatedness with respect to equivalences: | 
| 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 188 | Pair Input Input == Input and Pair Output Output == Output *) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 189 | fun eq_mode (Fun (m1, m2), Fun (m3, m4)) = eq_mode (m1, m3) andalso eq_mode (m2, m4) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 190 | | eq_mode (Pair (m1, m2), Pair (m3, m4)) = eq_mode (m1, m3) andalso eq_mode (m2, m4) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 191 | | eq_mode (Pair (m1, m2), Input) = eq_mode (m1, Input) andalso eq_mode (m2, Input) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 192 | | eq_mode (Pair (m1, m2), Output) = eq_mode (m1, Output) andalso eq_mode (m2, Output) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 193 | | eq_mode (Input, Pair (m1, m2)) = eq_mode (Input, m1) andalso eq_mode (Input, m2) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 194 | | eq_mode (Output, Pair (m1, m2)) = eq_mode (Output, m1) andalso eq_mode (Output, m2) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 195 | | eq_mode (Input, Input) = true | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 196 | | eq_mode (Output, Output) = true | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 197 | | eq_mode (Bool, Bool) = true | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 198 | | eq_mode _ = false | 
| 33623 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 199 | |
| 39311 | 200 | fun mode_ord (Input, Output) = LESS | 
| 201 | | mode_ord (Output, Input) = GREATER | |
| 202 | | mode_ord (Input, Input) = EQUAL | |
| 203 | | mode_ord (Output, Output) = EQUAL | |
| 204 | | mode_ord (Bool, Bool) = EQUAL | |
| 205 | | mode_ord (Pair (m1, m2), Pair (m3, m4)) = prod_ord mode_ord mode_ord ((m1, m2), (m3, m4)) | |
| 206 | | mode_ord (Fun (m1, m2), Fun (m3, m4)) = prod_ord mode_ord mode_ord ((m1, m2), (m3, m4)) | |
| 55437 | 207 | |
| 36035 
d82682936c52
adding registration of functions in the function flattening
 bulwahn parents: 
36032diff
changeset | 208 | fun list_fun_mode [] = Bool | 
| 
d82682936c52
adding registration of functions in the function flattening
 bulwahn parents: 
36032diff
changeset | 209 | | list_fun_mode (m :: ms) = Fun (m, list_fun_mode ms) | 
| 
d82682936c52
adding registration of functions in the function flattening
 bulwahn parents: 
36032diff
changeset | 210 | |
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 211 | (* name: binder_modes? *) | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 212 | fun strip_fun_mode (Fun (mode, mode')) = mode :: strip_fun_mode mode' | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 213 | | strip_fun_mode Bool = [] | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 214 | | strip_fun_mode _ = raise Fail "Bad mode for strip_fun_mode" | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 215 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 216 | (* name: strip_fun_mode? *) | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 217 | fun dest_fun_mode (Fun (mode, mode')) = mode :: dest_fun_mode mode' | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 218 | | dest_fun_mode mode = [mode] | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 219 | |
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 220 | fun dest_tuple_mode (Pair (mode, mode')) = mode :: dest_tuple_mode mode' | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 221 | | dest_tuple_mode _ = [] | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 222 | |
| 55437 | 223 | fun all_modes_of_typ' (T as Type ("fun", _)) =
 | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 224 | let | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 225 | val (S, U) = strip_type T | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 226 | in | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 227 | if U = HOLogic.boolT then | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 228 | fold_rev (fn m1 => fn m2 => map_product (curry Fun) m1 m2) | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 229 | (map all_modes_of_typ' S) [Bool] | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 230 | else | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 231 | [Input, Output] | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 232 | end | 
| 55437 | 233 |   | all_modes_of_typ' (Type (@{type_name Product_Type.prod}, [T1, T2])) =
 | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 234 | map_product (curry Pair) (all_modes_of_typ' T1) (all_modes_of_typ' T2) | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 235 | | all_modes_of_typ' _ = [Input, Output] | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 236 | |
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 237 | fun all_modes_of_typ (T as Type ("fun", _)) =
 | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 238 | let | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 239 | val (S, U) = strip_type T | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 240 | in | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 241 |       if U = @{typ bool} then
 | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 242 | fold_rev (fn m1 => fn m2 => map_product (curry Fun) m1 m2) | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 243 | (map all_modes_of_typ' S) [Bool] | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 244 | else | 
| 39192 
f302ed18f42f
raising an exception instead of guessing some reasonable behaviour for this function
 bulwahn parents: 
38864diff
changeset | 245 | raise Fail "Invocation of all_modes_of_typ with a non-predicate type" | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 246 | end | 
| 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 247 |   | all_modes_of_typ @{typ bool} = [Bool]
 | 
| 46662 | 248 | | all_modes_of_typ _ = | 
| 39192 
f302ed18f42f
raising an exception instead of guessing some reasonable behaviour for this function
 bulwahn parents: 
38864diff
changeset | 249 | raise Fail "Invocation of all_modes_of_typ with a non-predicate type" | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 250 | |
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 251 | fun all_smodes_of_typ (T as Type ("fun", _)) =
 | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 252 | let | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 253 | val (S, U) = strip_type T | 
| 55437 | 254 |     fun all_smodes (Type (@{type_name Product_Type.prod}, [T1, T2])) =
 | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 255 | map_product (curry Pair) (all_smodes T1) (all_smodes T2) | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 256 | | all_smodes _ = [Input, Output] | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 257 | in | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 258 | if U = HOLogic.boolT then | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 259 | fold_rev (fn m1 => fn m2 => map_product (curry Fun) m1 m2) (map all_smodes S) [Bool] | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 260 | else | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 261 | raise Fail "invalid type for predicate" | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 262 | end | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 263 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 264 | fun ho_arg_modes_of mode = | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 265 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 266 | fun ho_arg_mode (m as Fun _) = [m] | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 267 | | ho_arg_mode (Pair (m1, m2)) = ho_arg_mode m1 @ ho_arg_mode m2 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 268 | | ho_arg_mode _ = [] | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 269 | in | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 270 | maps ho_arg_mode (strip_fun_mode mode) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 271 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 272 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 273 | fun ho_args_of mode ts = | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 274 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 275 | fun ho_arg (Fun _) (SOME t) = [t] | 
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 276 | | ho_arg (Fun _) NONE = raise Fail "mode and term do not match" | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 277 |       | ho_arg (Pair (m1, m2)) (SOME (Const (@{const_name Pair}, _) $ t1 $ t2)) =
 | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 278 | ho_arg m1 (SOME t1) @ ho_arg m2 (SOME t2) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 279 | | ho_arg (Pair (m1, m2)) NONE = ho_arg m1 NONE @ ho_arg m2 NONE | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 280 | | ho_arg _ _ = [] | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 281 | in | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 282 | flat (map2_optional ho_arg (strip_fun_mode mode) ts) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 283 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 284 | |
| 39299 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 285 | fun ho_args_of_typ T ts = | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 286 | let | 
| 55437 | 287 |     fun ho_arg (T as Type ("fun", [_, _])) (SOME t) =
 | 
| 288 |           if body_type T = @{typ bool} then [t] else []
 | |
| 289 |       | ho_arg (Type ("fun", [_, _])) NONE = raise Fail "mode and term do not match"
 | |
| 39299 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 290 |       | ho_arg (Type(@{type_name "Product_Type.prod"}, [T1, T2]))
 | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 291 |          (SOME (Const (@{const_name Pair}, _) $ t1 $ t2)) =
 | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 292 | ho_arg T1 (SOME t1) @ ho_arg T2 (SOME t2) | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 293 |       | ho_arg (Type(@{type_name "Product_Type.prod"}, [T1, T2])) NONE =
 | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 294 | ho_arg T1 NONE @ ho_arg T2 NONE | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 295 | | ho_arg _ _ = [] | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 296 | in | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 297 | flat (map2_optional ho_arg (binder_types T) ts) | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 298 | end | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 299 | |
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 300 | fun ho_argsT_of_typ Ts = | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 301 | let | 
| 39312 
968c33be5c96
handling function types more carefully than in e98a06145530
 bulwahn parents: 
39311diff
changeset | 302 |     fun ho_arg (T as Type("fun", [_,_])) = if body_type T = @{typ bool} then [T] else []
 | 
| 55437 | 303 |       | ho_arg (Type (@{type_name "Product_Type.prod"}, [T1, T2])) =
 | 
| 39299 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 304 | ho_arg T1 @ ho_arg T2 | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 305 | | ho_arg _ = [] | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 306 | in | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 307 | maps ho_arg Ts | 
| 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 308 | end | 
| 55437 | 309 | |
| 39299 
e98a06145530
directly computing the values of interest instead of composing functions in an unintelligent way that causes exponential much garbage; using the latest theory
 bulwahn parents: 
39192diff
changeset | 310 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 311 | (* temporary function should be replaced by unsplit_input or so? *) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 312 | fun replace_ho_args mode hoargs ts = | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 313 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 314 | fun replace (Fun _, _) (arg' :: hoargs') = (arg', hoargs') | 
| 37391 | 315 |       | replace (Pair (m1, m2), Const (@{const_name Pair}, T) $ t1 $ t2) hoargs =
 | 
| 55437 | 316 | let | 
| 317 | val (t1', hoargs') = replace (m1, t1) hoargs | |
| 318 | val (t2', hoargs'') = replace (m2, t2) hoargs' | |
| 319 | in | |
| 320 |             (Const (@{const_name Pair}, T) $ t1' $ t2', hoargs'')
 | |
| 321 | end | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 322 | | replace (_, t) hoargs = (t, hoargs) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 323 | in | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 324 | fst (fold_map replace (strip_fun_mode mode ~~ ts) hoargs) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 325 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 326 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 327 | fun ho_argsT_of mode Ts = | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 328 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 329 | fun ho_arg (Fun _) T = [T] | 
| 55437 | 330 |       | ho_arg (Pair (m1, m2)) (Type (@{type_name Product_Type.prod}, [T1, T2])) =
 | 
| 331 | ho_arg m1 T1 @ ho_arg m2 T2 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 332 | | ho_arg _ _ = [] | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 333 | in | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 334 | flat (map2 ho_arg (strip_fun_mode mode) Ts) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 335 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 336 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 337 | (* splits mode and maps function to higher-order argument types *) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 338 | fun split_map_mode f mode ts = | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 339 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 340 | fun split_arg_mode' (m as Fun _) t = f m t | 
| 37391 | 341 |       | split_arg_mode' (Pair (m1, m2)) (Const (@{const_name Pair}, _) $ t1 $ t2) =
 | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 342 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 343 | val (i1, o1) = split_arg_mode' m1 t1 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 344 | val (i2, o2) = split_arg_mode' m2 t2 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 345 | in | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 346 | (comb_option HOLogic.mk_prod (i1, i2), comb_option HOLogic.mk_prod (o1, o2)) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 347 | end | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 348 | | split_arg_mode' m t = | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 349 | if eq_mode (m, Input) then (SOME t, NONE) | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 350 | else if eq_mode (m, Output) then (NONE, SOME t) | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 351 | else raise Fail "split_map_mode: mode and term do not match" | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 352 | in | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59057diff
changeset | 353 | (apply2 (map_filter I) o split_list) (map2 split_arg_mode' (strip_fun_mode mode) ts) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 354 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 355 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 356 | (* splits mode and maps function to higher-order argument types *) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 357 | fun split_map_modeT f mode Ts = | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 358 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 359 | fun split_arg_mode' (m as Fun _) T = f m T | 
| 37678 
0040bafffdef
"prod" and "sum" replace "*" and "+" respectively
 haftmann parents: 
37391diff
changeset | 360 |       | split_arg_mode' (Pair (m1, m2)) (Type (@{type_name Product_Type.prod}, [T1, T2])) =
 | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 361 | let | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 362 | val (i1, o1) = split_arg_mode' m1 T1 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 363 | val (i2, o2) = split_arg_mode' m2 T2 | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 364 | in | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 365 | (comb_option HOLogic.mk_prodT (i1, i2), comb_option HOLogic.mk_prodT (o1, o2)) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 366 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 367 | | split_arg_mode' Input T = (SOME T, NONE) | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 368 | | split_arg_mode' Output T = (NONE, SOME T) | 
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 369 | | split_arg_mode' _ _ = raise Fail "split_modeT': mode and type do not match" | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 370 | in | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59057diff
changeset | 371 | (apply2 (map_filter I) o split_list) (map2 split_arg_mode' (strip_fun_mode mode) Ts) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 372 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 373 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 374 | fun split_mode mode ts = split_map_mode (fn _ => fn _ => (NONE, NONE)) mode ts | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 375 | |
| 37678 
0040bafffdef
"prod" and "sum" replace "*" and "+" respectively
 haftmann parents: 
37391diff
changeset | 376 | fun fold_map_aterms_prodT comb f (Type (@{type_name Product_Type.prod}, [T1, T2])) s =
 | 
| 55437 | 377 | let | 
| 378 | val (x1, s') = fold_map_aterms_prodT comb f T1 s | |
| 379 | val (x2, s'') = fold_map_aterms_prodT comb f T2 s' | |
| 380 | in | |
| 381 | (comb x1 x2, s'') | |
| 382 | end | |
| 383 | | fold_map_aterms_prodT _ f T s = f T s | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 384 | |
| 37391 | 385 | fun map_filter_prod f (Const (@{const_name Pair}, _) $ t1 $ t2) =
 | 
| 55437 | 386 | comb_option HOLogic.mk_prod (map_filter_prod f t1, map_filter_prod f t2) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 387 | | map_filter_prod f t = f t | 
| 55437 | 388 | |
| 40139 | 389 | fun split_modeT mode Ts = | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 390 | let | 
| 46662 | 391 | fun split_arg_mode (Fun _) _ = ([], []) | 
| 40139 | 392 |       | split_arg_mode (Pair (m1, m2)) (Type (@{type_name Product_Type.prod}, [T1, T2])) =
 | 
| 55437 | 393 | let | 
| 394 | val (i1, o1) = split_arg_mode m1 T1 | |
| 395 | val (i2, o2) = split_arg_mode m2 T2 | |
| 396 | in | |
| 397 | (i1 @ i2, o1 @ o2) | |
| 398 | end | |
| 40139 | 399 | | split_arg_mode Input T = ([T], []) | 
| 400 | | split_arg_mode Output T = ([], [T]) | |
| 401 | | split_arg_mode _ _ = raise Fail "split_modeT: mode and type do not match" | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 402 | in | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59057diff
changeset | 403 | (apply2 flat o split_list) (map2 split_arg_mode (strip_fun_mode mode) Ts) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 404 | end | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 405 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 406 | fun string_of_mode mode = | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 407 | let | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 408 | fun string_of_mode1 Input = "i" | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 409 | | string_of_mode1 Output = "o" | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 410 | | string_of_mode1 Bool = "bool" | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 411 |       | string_of_mode1 mode = "(" ^ (string_of_mode3 mode) ^ ")"
 | 
| 33626 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 412 | and string_of_mode2 (Pair (m1, m2)) = string_of_mode3 m1 ^ " * " ^ string_of_mode2 m2 | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 413 | | string_of_mode2 mode = string_of_mode1 mode | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 414 | and string_of_mode3 (Fun (m1, m2)) = string_of_mode2 m1 ^ " => " ^ string_of_mode3 m2 | 
| 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 415 | | string_of_mode3 mode = string_of_mode2 mode | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 416 | in string_of_mode3 mode end | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 417 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 418 | fun ascii_string_of_mode mode' = | 
| 33626 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 419 | let | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 420 | fun ascii_string_of_mode' Input = "i" | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 421 | | ascii_string_of_mode' Output = "o" | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 422 | | ascii_string_of_mode' Bool = "b" | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 423 | | ascii_string_of_mode' (Pair (m1, m2)) = | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 424 | "P" ^ ascii_string_of_mode' m1 ^ ascii_string_of_mode'_Pair m2 | 
| 55437 | 425 | | ascii_string_of_mode' (Fun (m1, m2)) = | 
| 33626 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 426 | "F" ^ ascii_string_of_mode' m1 ^ ascii_string_of_mode'_Fun m2 ^ "B" | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 427 | and ascii_string_of_mode'_Fun (Fun (m1, m2)) = | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 428 | ascii_string_of_mode' m1 ^ (if m2 = Bool then "" else "_" ^ ascii_string_of_mode'_Fun m2) | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 429 | | ascii_string_of_mode'_Fun Bool = "B" | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 430 | | ascii_string_of_mode'_Fun m = ascii_string_of_mode' m | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 431 | and ascii_string_of_mode'_Pair (Pair (m1, m2)) = | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 432 | ascii_string_of_mode' m1 ^ ascii_string_of_mode'_Pair m2 | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 433 | | ascii_string_of_mode'_Pair m = ascii_string_of_mode' m | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 434 | in ascii_string_of_mode'_Fun mode' end | 
| 
42f69386943a
new names for predicate functions in the predicate compiler
 bulwahn parents: 
33623diff
changeset | 435 | |
| 55437 | 436 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 437 | (* premises *) | 
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 438 | |
| 55437 | 439 | datatype indprem = | 
| 440 | Prem of term | Negprem of term | Sidecond of term | Generator of (string * typ) | |
| 33619 
d93a3cb55068
first steps towards a new mode datastructure; new syntax for mode annotations and new output of modes
 bulwahn parents: 
33473diff
changeset | 441 | |
| 36251 
5fd5d732a4ea
only add relevant predicates to the list of extra modes
 bulwahn parents: 
36248diff
changeset | 442 | fun dest_indprem (Prem t) = t | 
| 
5fd5d732a4ea
only add relevant predicates to the list of extra modes
 bulwahn parents: 
36248diff
changeset | 443 | | dest_indprem (Negprem t) = t | 
| 
5fd5d732a4ea
only add relevant predicates to the list of extra modes
 bulwahn parents: 
36248diff
changeset | 444 | | dest_indprem (Sidecond t) = t | 
| 
5fd5d732a4ea
only add relevant predicates to the list of extra modes
 bulwahn parents: 
36248diff
changeset | 445 | | dest_indprem (Generator _) = raise Fail "cannot destruct generator" | 
| 
5fd5d732a4ea
only add relevant predicates to the list of extra modes
 bulwahn parents: 
36248diff
changeset | 446 | |
| 36254 | 447 | fun map_indprem f (Prem t) = Prem (f t) | 
| 448 | | map_indprem f (Negprem t) = Negprem (f t) | |
| 449 | | map_indprem f (Sidecond t) = Sidecond (f t) | |
| 450 | | map_indprem f (Generator (v, T)) = Generator (dest_Free (f (Free (v, T)))) | |
| 451 | ||
| 55437 | 452 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 453 | (* general syntactic functions *) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 454 | |
| 56245 | 455 | fun is_equationlike_term (Const (@{const_name Pure.eq}, _) $ _ $ _) = true
 | 
| 55437 | 456 | | is_equationlike_term | 
| 457 |       (Const (@{const_name Trueprop}, _) $ (Const (@{const_name HOL.eq}, _) $ _ $ _)) = true
 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 458 | | is_equationlike_term _ = false | 
| 55437 | 459 | |
| 460 | val is_equationlike = is_equationlike_term o prop_of | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 461 | |
| 56245 | 462 | fun is_pred_equation_term (Const (@{const_name Pure.eq}, _) $ u $ v) =
 | 
| 55437 | 463 |       (fastype_of u = @{typ bool}) andalso (fastype_of v = @{typ bool})
 | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 464 | | is_pred_equation_term _ = false | 
| 55437 | 465 | |
| 466 | val is_pred_equation = is_pred_equation_term o prop_of | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 467 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 468 | fun is_intro_term constname t = | 
| 55437 | 469 | the_default false (try (fn t => | 
| 470 | case fst (strip_comb (HOLogic.dest_Trueprop (Logic.strip_imp_concl t))) of | |
| 471 | Const (c, _) => c = constname | |
| 472 | | _ => false) t) | |
| 473 | ||
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 474 | fun is_intro constname t = is_intro_term constname (prop_of t) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 475 | |
| 40844 | 476 | fun is_predT (T as Type("fun", [_, _])) = (body_type T = @{typ bool})
 | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 477 | | is_predT _ = false | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 478 | |
| 55399 | 479 | fun get_constrs thy = | 
| 480 | let | |
| 481 | val ctxt = Proof_Context.init_global thy | |
| 482 | in | |
| 483 | Ctr_Sugar.ctr_sugars_of ctxt | |
| 484 | |> maps (map_filter (try dest_Const) o #ctrs) | |
| 485 | |> map (apsnd (fn T => (BNF_Util.num_binder_types T, fst (dest_Type (body_type T))))) | |
| 486 | end | |
| 487 | ||
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 488 | (*** check if a term contains only constructor functions ***) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 489 | (* TODO: another copy in the core! *) | 
| 33623 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 490 | (* FIXME: constructor terms are supposed to be seen in the way the code generator | 
| 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 491 | sees constructors.*) | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 492 | fun is_constrt thy = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 493 | let | 
| 55399 | 494 | val cnstrs = get_constrs thy | 
| 55437 | 495 | fun check t = | 
| 496 | (case strip_comb t of | |
| 36032 
dfd30b5b4e73
adding specialisation of predicates to the predicate compiler
 bulwahn parents: 
36029diff
changeset | 497 | (Var _, []) => true | 
| 
dfd30b5b4e73
adding specialisation of predicates to the predicate compiler
 bulwahn parents: 
36029diff
changeset | 498 | | (Free _, []) => true | 
| 55437 | 499 | | (Const (s, T), ts) => | 
| 500 | (case (AList.lookup (op =) cnstrs s, body_type T) of | |
| 501 | (SOME (i, Tname), Type (Tname', _)) => | |
| 502 | length ts = i andalso Tname = Tname' andalso forall check ts | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 503 | | _ => false) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 504 | | _ => false) | 
| 55437 | 505 | in check end | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 506 | |
| 55437 | 507 | val is_constr = Code.is_constr o Proof_Context.theory_of | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 508 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 509 | fun strip_all t = (Term.strip_all_vars t, Term.strip_all_body t) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 510 | |
| 38558 | 511 | fun strip_ex (Const (@{const_name Ex}, _) $ Abs (x, T, t)) =
 | 
| 55437 | 512 | let | 
| 513 | val (xTs, t') = strip_ex t | |
| 514 | in | |
| 515 | ((x, T) :: xTs, t') | |
| 516 | end | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 517 | | strip_ex t = ([], t) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 518 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 519 | fun focus_ex t nctxt = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 520 | let | 
| 55437 | 521 | val ((xs, Ts), t') = apfst split_list (strip_ex t) | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
43324diff
changeset | 522 | val (xs', nctxt') = fold_map Name.variant xs nctxt; | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 523 | val ps' = xs' ~~ Ts; | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 524 | val vs = map Free ps'; | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 525 | val t'' = Term.subst_bounds (rev vs, t'); | 
| 55437 | 526 | in ((ps', t''), nctxt') end | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 527 | |
| 55437 | 528 | val strip_intro_concl = strip_comb o HOLogic.dest_Trueprop o Logic.strip_imp_concl o prop_of | 
| 529 | ||
| 530 | ||
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 531 | (* introduction rule combinators *) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 532 | |
| 55437 | 533 | fun map_atoms f intro = | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 534 | let | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 535 | val (literals, head) = Logic.strip_horn intro | 
| 55437 | 536 | fun appl t = | 
| 537 | (case t of | |
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 538 |         (@{term Not} $ t') => HOLogic.mk_not (f t')
 | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 539 | | _ => f t) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 540 | in | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 541 | Logic.list_implies | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 542 | (map (HOLogic.mk_Trueprop o appl o HOLogic.dest_Trueprop) literals, head) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 543 | end | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 544 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 545 | fun fold_atoms f intro s = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 546 | let | 
| 46662 | 547 | val (literals, _) = Logic.strip_horn intro | 
| 55437 | 548 | fun appl t s = | 
| 549 | (case t of | |
| 550 |         (@{term Not} $ t') => f t' s
 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 551 | | _ => f t s) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 552 | in fold appl (map HOLogic.dest_Trueprop literals) s end | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 553 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 554 | fun fold_map_atoms f intro s = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 555 | let | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 556 | val (literals, head) = Logic.strip_horn intro | 
| 55437 | 557 | fun appl t s = | 
| 558 | (case t of | |
| 559 |         (@{term Not} $ t') => apfst HOLogic.mk_not (f t' s)
 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 560 | | _ => f t s) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 561 | val (literals', s') = fold_map appl (map HOLogic.dest_Trueprop literals) s | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 562 | in | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 563 | (Logic.list_implies (map HOLogic.mk_Trueprop literals', head), s') | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 564 | end; | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 565 | |
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 566 | fun map_filter_premises f intro = | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 567 | let | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 568 | val (premises, head) = Logic.strip_horn intro | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 569 | in | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 570 | Logic.list_implies (map_filter f premises, head) | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 571 | end | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 572 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 573 | fun maps_premises f intro = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 574 | let | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 575 | val (premises, head) = Logic.strip_horn intro | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 576 | in | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 577 | Logic.list_implies (maps f premises, head) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 578 | end | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 579 | |
| 35875 | 580 | fun map_concl f intro = | 
| 581 | let | |
| 582 | val (premises, head) = Logic.strip_horn intro | |
| 583 | in | |
| 584 | Logic.list_implies (premises, f head) | |
| 585 | end | |
| 586 | ||
| 55437 | 587 | |
| 35875 | 588 | (* combinators to apply a function to all basic parts of nested products *) | 
| 589 | ||
| 37391 | 590 | fun map_products f (Const (@{const_name Pair}, T) $ t1 $ t2) =
 | 
| 591 |   Const (@{const_name Pair}, T) $ map_products f t1 $ map_products f t2
 | |
| 35875 | 592 | | map_products f t = f t | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 593 | |
| 55437 | 594 | |
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 595 | (* split theorems of case expressions *) | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 596 | |
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 597 | fun prepare_split_thm ctxt split_thm = | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 598 |     (split_thm RS @{thm iffD2})
 | 
| 35624 | 599 |     |> Local_Defs.unfold ctxt [@{thm atomize_conjL[symmetric]},
 | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 600 |       @{thm atomize_all[symmetric]}, @{thm atomize_imp[symmetric]}]
 | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 601 | |
| 55399 | 602 | fun find_split_thm thy (Const (name, _)) = | 
| 603 | Option.map #split (Ctr_Sugar.ctr_sugar_of_case (Proof_Context.init_global thy) name) | |
| 55437 | 604 | | find_split_thm _ _ = NONE | 
| 605 | ||
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 606 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 607 | (* lifting term operations to theorems *) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 608 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 609 | fun map_term thy f th = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 610 | Skip_Proof.make_thm thy (f (prop_of th)) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 611 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 612 | (* | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 613 | fun equals_conv lhs_cv rhs_cv ct = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 614 | case Thm.term_of ct of | 
| 56245 | 615 |     Const (@{const_name Pure.eq}, _) $ _ $ _ => Conv.arg_conv cv ct
 | 
| 55437 | 616 | | _ => error "equals_conv" | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 617 | *) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 618 | |
| 55437 | 619 | |
| 36038 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 620 | (* Different compilations *) | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 621 | |
| 35881 
aa412e08bfee
adding depth_limited_random compilation to predicate compiler
 bulwahn parents: 
35880diff
changeset | 622 | datatype compilation = Pred | Depth_Limited | Random | Depth_Limited_Random | DSeq | Annotated | 
| 40051 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 623 | | Pos_Random_DSeq | Neg_Random_DSeq | New_Pos_Random_DSeq | New_Neg_Random_DSeq | | 
| 45450 | 624 | Pos_Generator_DSeq | Neg_Generator_DSeq | Pos_Generator_CPS | Neg_Generator_CPS | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 625 | |
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 626 | fun negative_compilation_of Pos_Random_DSeq = Neg_Random_DSeq | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 627 | | negative_compilation_of Neg_Random_DSeq = Pos_Random_DSeq | 
| 36018 | 628 | | negative_compilation_of New_Pos_Random_DSeq = New_Neg_Random_DSeq | 
| 629 | | negative_compilation_of New_Neg_Random_DSeq = New_Pos_Random_DSeq | |
| 40051 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 630 | | negative_compilation_of Pos_Generator_DSeq = Neg_Generator_DSeq | 
| 45450 | 631 | | negative_compilation_of Neg_Generator_DSeq = Pos_Generator_DSeq | 
| 632 | | negative_compilation_of Pos_Generator_CPS = Neg_Generator_CPS | |
| 55437 | 633 | | negative_compilation_of Neg_Generator_CPS = Pos_Generator_CPS | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 634 | | negative_compilation_of c = c | 
| 55437 | 635 | |
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 636 | fun compilation_for_polarity false Pos_Random_DSeq = Neg_Random_DSeq | 
| 36018 | 637 | | compilation_for_polarity false New_Pos_Random_DSeq = New_Neg_Random_DSeq | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 638 | | compilation_for_polarity _ c = c | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 639 | |
| 40049 
75d9f57123d6
adding decreasing bind and non-decreasing bind; depth-limited and depth-unlimited compilation possible
 bulwahn parents: 
40048diff
changeset | 640 | fun is_depth_limited_compilation c = | 
| 40051 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 641 | (c = New_Pos_Random_DSeq) orelse (c = New_Neg_Random_DSeq) orelse | 
| 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 642 | (c = Pos_Generator_DSeq) orelse (c = Pos_Generator_DSeq) | 
| 40049 
75d9f57123d6
adding decreasing bind and non-decreasing bind; depth-limited and depth-unlimited compilation possible
 bulwahn parents: 
40048diff
changeset | 643 | |
| 35885 
7b39120a1494
some improvements thanks to Makarius source code review
 bulwahn parents: 
35881diff
changeset | 644 | fun string_of_compilation c = | 
| 55437 | 645 | (case c of | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 646 | Pred => "" | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 647 | | Random => "random" | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 648 | | Depth_Limited => "depth limited" | 
| 35881 
aa412e08bfee
adding depth_limited_random compilation to predicate compiler
 bulwahn parents: 
35880diff
changeset | 649 | | Depth_Limited_Random => "depth limited random" | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 650 | | DSeq => "dseq" | 
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 651 | | Annotated => "annotated" | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 652 | | Pos_Random_DSeq => "pos_random dseq" | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 653 | | Neg_Random_DSeq => "neg_random_dseq" | 
| 36018 | 654 | | New_Pos_Random_DSeq => "new_pos_random dseq" | 
| 655 | | New_Neg_Random_DSeq => "new_neg_random_dseq" | |
| 40051 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 656 | | Pos_Generator_DSeq => "pos_generator_dseq" | 
| 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 657 | | Neg_Generator_DSeq => "neg_generator_dseq" | 
| 45450 | 658 | | Pos_Generator_CPS => "pos_generator_cps" | 
| 55437 | 659 | | Neg_Generator_CPS => "neg_generator_cps") | 
| 660 | ||
| 661 | val compilation_names = | |
| 662 |  [("pred", Pred),
 | |
| 36018 | 663 |   ("random", Random),
 | 
| 664 |   ("depth_limited", Depth_Limited),
 | |
| 665 |   ("depth_limited_random", Depth_Limited_Random),
 | |
| 666 |   (*("annotated", Annotated),*)
 | |
| 40054 
cd7b1fa20bce
adapting alternative_defs, predicate_compile_quickcheck, examples and code_prolog
 bulwahn parents: 
40052diff
changeset | 667 |   ("dseq", DSeq),
 | 
| 
cd7b1fa20bce
adapting alternative_defs, predicate_compile_quickcheck, examples and code_prolog
 bulwahn parents: 
40052diff
changeset | 668 |   ("random_dseq", Pos_Random_DSeq),
 | 
| 40051 
b6acda4d1c29
added generator_dseq compilation for a sound depth-limited compilation with small value generators
 bulwahn parents: 
40049diff
changeset | 669 |   ("new_random_dseq", New_Pos_Random_DSeq),
 | 
| 45450 | 670 |   ("generator_dseq", Pos_Generator_DSeq),
 | 
| 671 |   ("generator_cps", Pos_Generator_CPS)]
 | |
| 36038 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 672 | |
| 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 673 | val non_random_compilations = [Pred, Depth_Limited, DSeq, Annotated] | 
| 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 674 | |
| 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 675 | |
| 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 676 | val random_compilations = [Random, Depth_Limited_Random, | 
| 48221 
e0ed7fab0d09
adding a missing entry to predicate compiler's setup
 bulwahn parents: 
46662diff
changeset | 677 | Pos_Random_DSeq, Neg_Random_DSeq, New_Pos_Random_DSeq, New_Neg_Random_DSeq, | 
| 
e0ed7fab0d09
adding a missing entry to predicate compiler's setup
 bulwahn parents: 
46662diff
changeset | 678 | Pos_Generator_CPS, Neg_Generator_CPS] | 
| 36038 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 679 | |
| 55437 | 680 | |
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 681 | (* datastructures and setup for generic compilation *) | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 682 | |
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 683 | datatype compilation_funs = CompilationFuns of {
 | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 684 | mk_monadT : typ -> typ, | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 685 | dest_monadT : typ -> typ, | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 686 | mk_empty : typ -> term, | 
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 687 | mk_single : term -> term, | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 688 | mk_bind : term * term -> term, | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 689 | mk_plus : term * term -> term, | 
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 690 | mk_if : term -> term, | 
| 36049 
0ce5b7a5c2fd
adding iterate_upto interface in compilations and iterate_upto functions in Isabelle theories for arithmetic setup of the predicate compiler
 bulwahn parents: 
36047diff
changeset | 691 | mk_iterate_upto : typ -> term * term * term -> term, | 
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 692 | mk_not : term -> term, | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 693 | mk_map : typ -> typ -> term -> term -> term | 
| 55437 | 694 | } | 
| 36038 
385f706eff24
generalized alternative functions to alternative compilation to handle arithmetic functions better
 bulwahn parents: 
36035diff
changeset | 695 | |
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 696 | fun mk_monadT (CompilationFuns funs) = #mk_monadT funs | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 697 | fun dest_monadT (CompilationFuns funs) = #dest_monadT funs | 
| 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 698 | fun mk_empty (CompilationFuns funs) = #mk_empty funs | 
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 699 | fun mk_single (CompilationFuns funs) = #mk_single funs | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 700 | fun mk_bind (CompilationFuns funs) = #mk_bind funs | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 701 | fun mk_plus (CompilationFuns funs) = #mk_plus funs | 
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 702 | fun mk_if (CompilationFuns funs) = #mk_if funs | 
| 36049 
0ce5b7a5c2fd
adding iterate_upto interface in compilations and iterate_upto functions in Isabelle theories for arithmetic setup of the predicate compiler
 bulwahn parents: 
36047diff
changeset | 703 | fun mk_iterate_upto (CompilationFuns funs) = #mk_iterate_upto funs | 
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 704 | fun mk_not (CompilationFuns funs) = #mk_not funs | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 705 | fun mk_map (CompilationFuns funs) = #mk_map funs | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 706 | |
| 55437 | 707 | |
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 708 | (** function types and names of different compilations **) | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 709 | |
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 710 | fun funT_of compfuns mode T = | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 711 | let | 
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 712 | val Ts = binder_types T | 
| 55437 | 713 | val (inTs, outTs) = | 
| 714 | split_map_modeT (fn m => fn T => (SOME (funT_of compfuns m T), NONE)) mode Ts | |
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 715 | in | 
| 45461 
130c90bb80b4
using more conventional names for monad plus operations
 bulwahn parents: 
45450diff
changeset | 716 | inTs ---> (mk_monadT compfuns (HOLogic.mk_tupleT outTs)) | 
| 55437 | 717 | end | 
| 718 | ||
| 36046 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 719 | |
| 
c3946372f556
putting compilation setup of predicate compiler in a separate file
 bulwahn parents: 
36038diff
changeset | 720 | (* Different options for compiler *) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 721 | |
| 55437 | 722 | datatype options = Options of {
 | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 723 | expected_modes : (string * mode list) option, | 
| 39382 
c797f3ab2ae1
proposed modes for code_pred now supports modes for mutual predicates
 bulwahn parents: 
39312diff
changeset | 724 | proposed_modes : (string * mode list) list, | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 725 | proposed_names : ((string * mode) * string) list, | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 726 | show_steps : bool, | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 727 | show_proof_trace : bool, | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 728 | show_intermediate_results : bool, | 
| 33251 | 729 | show_mode_inference : bool, | 
| 730 | show_modes : bool, | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 731 | show_compilation : bool, | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 732 | show_caught_failures : bool, | 
| 39383 
ddfafa97da2f
adding option show_invalid_clauses for a more detailed message when modes are not inferred
 bulwahn parents: 
39382diff
changeset | 733 | show_invalid_clauses : bool, | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 734 | skip_proof : bool, | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 735 | no_topmost_reordering : bool, | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 736 | function_flattening : bool, | 
| 36248 
9ed1a37de465
added option for specialisation to the predicate compiler
 bulwahn parents: 
36246diff
changeset | 737 | specialise : bool, | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 738 | fail_safe_function_flattening : bool, | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 739 | no_higher_order_predicate : string list, | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 740 | inductify : bool, | 
| 36254 | 741 | detect_switches : bool, | 
| 40048 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 742 | smart_depth_limiting : bool, | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 743 | compilation : compilation | 
| 55437 | 744 | } | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 745 | |
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 746 | fun expected_modes (Options opt) = #expected_modes opt | 
| 39382 
c797f3ab2ae1
proposed modes for code_pred now supports modes for mutual predicates
 bulwahn parents: 
39312diff
changeset | 747 | fun proposed_modes (Options opt) = AList.lookup (op =) (#proposed_modes opt) | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 748 | fun proposed_names (Options opt) name mode = AList.lookup (eq_pair (op =) eq_mode) | 
| 33623 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 749 | (#proposed_names opt) (name, mode) | 
| 33620 
b6bf2dc5aed7
added interface of user proposals for names of generated constants
 bulwahn parents: 
33619diff
changeset | 750 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 751 | fun show_steps (Options opt) = #show_steps opt | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 752 | fun show_intermediate_results (Options opt) = #show_intermediate_results opt | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 753 | fun show_proof_trace (Options opt) = #show_proof_trace opt | 
| 33251 | 754 | fun show_modes (Options opt) = #show_modes opt | 
| 755 | fun show_mode_inference (Options opt) = #show_mode_inference opt | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 756 | fun show_compilation (Options opt) = #show_compilation opt | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 757 | fun show_caught_failures (Options opt) = #show_caught_failures opt | 
| 39383 
ddfafa97da2f
adding option show_invalid_clauses for a more detailed message when modes are not inferred
 bulwahn parents: 
39382diff
changeset | 758 | fun show_invalid_clauses (Options opt) = #show_invalid_clauses opt | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 759 | fun skip_proof (Options opt) = #skip_proof opt | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 760 | |
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 761 | fun function_flattening (Options opt) = #function_flattening opt | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 762 | fun fail_safe_function_flattening (Options opt) = #fail_safe_function_flattening opt | 
| 36248 
9ed1a37de465
added option for specialisation to the predicate compiler
 bulwahn parents: 
36246diff
changeset | 763 | fun specialise (Options opt) = #specialise opt | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 764 | fun no_topmost_reordering (Options opt) = #no_topmost_reordering opt | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 765 | fun no_higher_order_predicate (Options opt) = #no_higher_order_predicate opt | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 766 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 767 | fun is_inductify (Options opt) = #inductify opt | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 768 | |
| 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 769 | fun compilation (Options opt) = #compilation opt | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 770 | |
| 36254 | 771 | fun detect_switches (Options opt) = #detect_switches opt | 
| 772 | ||
| 40048 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 773 | fun smart_depth_limiting (Options opt) = #smart_depth_limiting opt | 
| 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 774 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 775 | val default_options = Options {
 | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 776 | expected_modes = NONE, | 
| 39382 
c797f3ab2ae1
proposed modes for code_pred now supports modes for mutual predicates
 bulwahn parents: 
39312diff
changeset | 777 | proposed_modes = [], | 
| 33623 
4ec42d38224f
changed modes to expected_modes; added UNION to code_pred_inlining; fixed some examples; tuned
 bulwahn parents: 
33620diff
changeset | 778 | proposed_names = [], | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 779 | show_steps = false, | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 780 | show_intermediate_results = false, | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 781 | show_proof_trace = false, | 
| 33251 | 782 | show_modes = false, | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 783 | show_mode_inference = false, | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 784 | show_compilation = false, | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 785 | show_caught_failures = false, | 
| 39383 
ddfafa97da2f
adding option show_invalid_clauses for a more detailed message when modes are not inferred
 bulwahn parents: 
39382diff
changeset | 786 | show_invalid_clauses = false, | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 787 | skip_proof = true, | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 788 | no_topmost_reordering = false, | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 789 | function_flattening = false, | 
| 36248 
9ed1a37de465
added option for specialisation to the predicate compiler
 bulwahn parents: 
36246diff
changeset | 790 | specialise = false, | 
| 35324 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 791 | fail_safe_function_flattening = false, | 
| 
c9f428269b38
adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
 bulwahn parents: 
35224diff
changeset | 792 | no_higher_order_predicate = [], | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 793 | inductify = false, | 
| 36254 | 794 | detect_switches = true, | 
| 40048 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 795 | smart_depth_limiting = false, | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 796 | compilation = Pred | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 797 | } | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 798 | |
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 799 | val bool_options = ["show_steps", "show_intermediate_results", "show_proof_trace", "show_modes", | 
| 39383 
ddfafa97da2f
adding option show_invalid_clauses for a more detailed message when modes are not inferred
 bulwahn parents: 
39382diff
changeset | 800 | "show_mode_inference", "show_compilation", "show_invalid_clauses", "skip_proof", "inductify", | 
| 40048 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 801 | "no_function_flattening", "detect_switches", "specialise", "no_topmost_reordering", | 
| 
f3a46d524101
adding option smart_depth_limiting to predicate compiler
 bulwahn parents: 
39802diff
changeset | 802 | "smart_depth_limiting"] | 
| 34948 
2d5f2a9f7601
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
 bulwahn parents: 
33752diff
changeset | 803 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 804 | fun print_step options s = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 805 | if show_steps options then tracing s else () | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 806 | |
| 55437 | 807 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 808 | (* simple transformations *) | 
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 809 | |
| 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 810 | (** tuple processing **) | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 811 | |
| 39657 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 812 | fun rewrite_args [] (pats, intro_t, ctxt) = (pats, intro_t, ctxt) | 
| 55437 | 813 | | rewrite_args (arg::args) (pats, intro_t, ctxt) = | 
| 814 | (case HOLogic.strip_tupleT (fastype_of arg) of | |
| 815 | (_ :: _ :: _) => | |
| 816 | let | |
| 817 | fun rewrite_arg' | |
| 818 |                 (Const (@{const_name Pair}, _) $ _ $ t2, Type (@{type_name Product_Type.prod}, [_, T2]))
 | |
| 819 | (args, (pats, intro_t, ctxt)) = | |
| 820 | rewrite_arg' (t2, T2) (args, (pats, intro_t, ctxt)) | |
| 821 | | rewrite_arg' | |
| 822 |                 (t, Type (@{type_name Product_Type.prod}, [T1, T2])) (args, (pats, intro_t, ctxt)) =
 | |
| 823 | let | |
| 824 | val thy = Proof_Context.theory_of ctxt | |
| 825 | val ([x, y], ctxt') = Variable.variant_fixes ["x", "y"] ctxt | |
| 826 | val pat = (t, HOLogic.mk_prod (Free (x, T1), Free (y, T2))) | |
| 827 | val intro_t' = Pattern.rewrite_term thy [pat] [] intro_t | |
| 828 | val args' = map (Pattern.rewrite_term thy [pat] []) args | |
| 829 | in | |
| 830 | rewrite_arg' (Free (y, T2), T2) (args', (pat::pats, intro_t', ctxt')) | |
| 831 | end | |
| 832 | | rewrite_arg' _ (args, (pats, intro_t, ctxt)) = (args, (pats, intro_t, ctxt)) | |
| 833 | val (args', (pats, intro_t', ctxt')) = | |
| 834 | rewrite_arg' (arg, fastype_of arg) (args, (pats, intro_t, ctxt)) | |
| 835 | in | |
| 836 | rewrite_args args' (pats, intro_t', ctxt') | |
| 837 | end | |
| 39657 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 838 | | _ => rewrite_args args (pats, intro_t, ctxt)) | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 839 | |
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 840 | fun rewrite_prem atom = | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 841 | let | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 842 | val (_, args) = strip_comb atom | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 843 | in rewrite_args args end | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 844 | |
| 39787 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 845 | fun split_conjuncts_in_assms ctxt th = | 
| 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 846 | let | 
| 55437 | 847 | val ((_, [fixed_th]), ctxt') = Variable.import false [th] ctxt | 
| 39787 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 848 | fun split_conjs i nprems th = | 
| 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 849 | if i > nprems then th | 
| 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 850 | else | 
| 55437 | 851 |         (case try Drule.RSN (@{thm conjI}, (i, th)) of
 | 
| 852 | SOME th' => split_conjs i (nprems + 1) th' | |
| 853 | | NONE => split_conjs (i + 1) nprems th) | |
| 39787 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 854 | in | 
| 55437 | 855 | singleton (Variable.export ctxt' ctxt) | 
| 856 | (split_conjs 1 (Thm.nprems_of fixed_th) fixed_th) | |
| 39787 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 857 | end | 
| 40052 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 858 | |
| 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 859 | fun dest_conjunct_prem th = | 
| 55437 | 860 | (case HOLogic.dest_Trueprop (prop_of th) of | 
| 46662 | 861 |     (Const (@{const_name HOL.conj}, _) $ _ $ _) =>
 | 
| 40052 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 862 |       dest_conjunct_prem (th RS @{thm conjunct1})
 | 
| 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 863 |         @ dest_conjunct_prem (th RS @{thm conjunct2})
 | 
| 55437 | 864 | | _ => [th]) | 
| 40052 
ea46574ca815
splitting large core file into core_data, mode_inference and predicate_compile_proof
 bulwahn parents: 
40051diff
changeset | 865 | |
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 866 | fun expand_tuples thy intro = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 867 | let | 
| 42361 | 868 | val ctxt = Proof_Context.init_global thy | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 869 | val (((T_insts, t_insts), [intro']), ctxt1) = Variable.import false [intro] ctxt | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 870 | val intro_t = prop_of intro' | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 871 | val concl = Logic.strip_imp_concl intro_t | 
| 46662 | 872 | val (_, args) = strip_comb (HOLogic.dest_Trueprop concl) | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 873 | val (pats', intro_t', ctxt2) = rewrite_args args ([], intro_t, ctxt1) | 
| 46662 | 874 | val (pats', _, ctxt3) = fold_atoms rewrite_prem intro_t' (pats', intro_t', ctxt2) | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 875 | fun rewrite_pat (ct1, ct2) = | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 876 | (ct1, cterm_of thy (Pattern.rewrite_term thy pats' [] (term_of ct2))) | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 877 | val t_insts' = map rewrite_pat t_insts | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 878 | val intro'' = Thm.instantiate (T_insts, t_insts') intro | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 879 | val [intro'''] = Variable.export ctxt3 ctxt [intro''] | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51552diff
changeset | 880 | val intro'''' = | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51552diff
changeset | 881 | Simplifier.full_simplify | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51552diff
changeset | 882 | (put_simpset HOL_basic_ss ctxt | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51552diff
changeset | 883 |           addsimps [@{thm fst_conv}, @{thm snd_conv}, @{thm Pair_eq}])
 | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 884 | intro''' | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 885 | (* splitting conjunctions introduced by Pair_eq*) | 
| 39787 
a44f6b11cdc4
adding splitting of conjuncts in assumptions as forward rule on theorems; replacing term transformation for splitting conjuncts by theorem transformation; removing obsolete functions; tuned
 bulwahn parents: 
39658diff
changeset | 886 | val intro''''' = split_conjuncts_in_assms ctxt intro'''' | 
| 33250 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 887 | in | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 888 | intro''''' | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 889 | end | 
| 
5c2af18a3237
including the predicate compiler in HOL-Main; added RandomPredicate monad to Quickcheck
 bulwahn parents: diff
changeset | 890 | |
| 55437 | 891 | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 892 | (** making case distributivity rules **) | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 893 | (*** this should be part of the datatype package ***) | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 894 | |
| 55399 | 895 | fun datatype_name_of_case_name thy = | 
| 896 | Ctr_Sugar.ctr_sugar_of_case (Proof_Context.init_global thy) | |
| 897 | #> the #> #ctrs #> hd #> fastype_of #> body_type #> dest_Type #> fst | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 898 | |
| 55399 | 899 | fun make_case_comb thy Tcon = | 
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 900 | let | 
| 55399 | 901 | val ctxt = Proof_Context.init_global thy | 
| 902 |     val SOME {casex, ...} = Ctr_Sugar.ctr_sugar_of ctxt Tcon
 | |
| 903 | val casex' = Type.legacy_freeze casex | |
| 904 | val Ts = BNF_Util.binder_fun_types (fastype_of casex') | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 905 | in | 
| 55399 | 906 |     list_comb (casex', map_index (fn (j, T) => Free ("f" ^ string_of_int j,  T)) Ts)
 | 
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 907 | end | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 908 | |
| 55399 | 909 | fun make_case_distrib thy Tcon = | 
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 910 | let | 
| 55399 | 911 | val comb = make_case_comb thy Tcon; | 
| 912 |     val Type ("fun", [T, T']) = fastype_of comb;
 | |
| 913 | val (Const (case_name, _), fs) = strip_comb comb | |
| 914 | val used = Term.add_tfree_names comb [] | |
| 56254 | 915 |     val U = TFree (singleton (Name.variant_list used) "'t", @{sort type})
 | 
| 55399 | 916 |     val x = Free ("x", T)
 | 
| 917 |     val f = Free ("f", T' --> U)
 | |
| 918 | fun apply_f f' = | |
| 919 | let | |
| 920 | val Ts = binder_types (fastype_of f') | |
| 921 | val bs = map Bound ((length Ts - 1) downto 0) | |
| 922 | in | |
| 923 | fold_rev absdummy Ts (f $ (list_comb (f', bs))) | |
| 924 | end | |
| 925 | val fs' = map apply_f fs | |
| 926 | val case_c' = Const (case_name, (map fastype_of fs') @ [T] ---> U) | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 927 | in | 
| 55399 | 928 | HOLogic.mk_eq (f $ (comb $ x), list_comb (case_c', fs') $ x) | 
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 929 | end | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 930 | |
| 55399 | 931 | fun case_rewrite thy Tcon = | 
| 932 | (Drule.export_without_context o Skip_Proof.make_thm thy o HOLogic.mk_Trueprop) | |
| 933 | (make_case_distrib thy Tcon) | |
| 934 | ||
| 935 | fun instantiated_case_rewrite thy Tcon = | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 936 | let | 
| 55399 | 937 | val th = case_rewrite thy Tcon | 
| 42361 | 938 | val ctxt = Proof_Context.init_global thy | 
| 56259 
0d301d91444b
more sensible treatment of quasi-local variables (NB: Variable.add_fixes is only for term variables, while Variable.declare takes care of types within given terms);
 wenzelm parents: 
56254diff
changeset | 939 | val f = fst (strip_comb (fst (HOLogic.dest_eq (HOLogic.dest_Trueprop (prop_of th))))) | 
| 55399 | 940 |     val Type ("fun", [uninst_T, uninst_T']) = fastype_of f
 | 
| 56259 
0d301d91444b
more sensible treatment of quasi-local variables (NB: Variable.add_fixes is only for term variables, while Variable.declare takes care of types within given terms);
 wenzelm parents: 
56254diff
changeset | 941 | val ([yname], ctxt') = Variable.add_fixes ["y"] ctxt | 
| 
0d301d91444b
more sensible treatment of quasi-local variables (NB: Variable.add_fixes is only for term variables, while Variable.declare takes care of types within given terms);
 wenzelm parents: 
56254diff
changeset | 942 |     val T' = TFree ("'t'", @{sort type})
 | 
| 
0d301d91444b
more sensible treatment of quasi-local variables (NB: Variable.add_fixes is only for term variables, while Variable.declare takes care of types within given terms);
 wenzelm parents: 
56254diff
changeset | 943 |     val U = TFree ("'u", @{sort type})
 | 
| 55399 | 944 | val y = Free (yname, U) | 
| 945 | val f' = absdummy (U --> T') (Bound 0 $ y) | |
| 946 | val th' = Thm.certify_instantiate | |
| 947 | ([(dest_TVar uninst_T, U --> T'), (dest_TVar uninst_T', T')], | |
| 948 | [((fst (dest_Var f), (U --> T') --> T'), f')]) th | |
| 56259 
0d301d91444b
more sensible treatment of quasi-local variables (NB: Variable.add_fixes is only for term variables, while Variable.declare takes care of types within given terms);
 wenzelm parents: 
56254diff
changeset | 949 | val [th'] = Variable.export (Variable.declare_thm th' ctxt') ctxt [th'] | 
| 55399 | 950 | in | 
| 951 | th' | |
| 952 | end | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 953 | |
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 954 | fun case_betapply thy t = | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 955 | let | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 956 | val case_name = fst (dest_Const (fst (strip_comb t))) | 
| 55399 | 957 | val Tcon = datatype_name_of_case_name thy case_name | 
| 958 | val th = instantiated_case_rewrite thy Tcon | |
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 959 | in | 
| 55399 | 960 |     Raw_Simplifier.rewrite_term thy [th RS @{thm eq_reflection}] [] t
 | 
| 39802 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 961 | end | 
| 
7cadad6a18cc
applying case beta reduction to case term before matching in predicate compile function flattening; moving case beta reduction function to Predicate_Compile_Aux
 bulwahn parents: 
39787diff
changeset | 962 | |
| 55437 | 963 | |
| 39657 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 964 | (*** conversions ***) | 
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 965 | |
| 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 966 | fun imp_prems_conv cv ct = | 
| 55437 | 967 | (case Thm.term_of ct of | 
| 56245 | 968 |     Const (@{const_name Pure.imp}, _) $ _ $ _ =>
 | 
| 969 | Conv.combination_conv (Conv.arg_conv cv) (imp_prems_conv cv) ct | |
| 55437 | 970 | | _ => Conv.all_conv ct) | 
| 971 | ||
| 39657 
5e57675b7e40
moving the preprocessing of introduction rules after the code_pred command; added tuple expansion preprocessing of elimination rule
 bulwahn parents: 
39541diff
changeset | 972 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 973 | (** eta contract higher-order arguments **) | 
| 35875 | 974 | |
| 975 | fun eta_contract_ho_arguments thy intro = | |
| 976 | let | |
| 977 | fun f atom = list_comb (apsnd ((map o map_products) Envir.eta_contract) (strip_comb atom)) | |
| 978 | in | |
| 979 | map_term thy (map_concl f o map_atoms f) intro | |
| 980 | end | |
| 981 | ||
| 55437 | 982 | |
| 36047 
f8297ebb21a7
adding signature to Predicate_Compile_Aux; tuning Predicate_Compile_Aux structure
 bulwahn parents: 
36046diff
changeset | 983 | (** remove equalities **) | 
| 36022 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 984 | |
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 985 | fun remove_equalities thy intro = | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 986 | let | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 987 | fun remove_eqs intro_t = | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 988 | let | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 989 | val (prems, concl) = Logic.strip_horn intro_t | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 990 | fun remove_eq (prems, concl) = | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 991 | let | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 992 | fun removable_eq prem = | 
| 55437 | 993 | (case try (HOLogic.dest_eq o HOLogic.dest_Trueprop) prem of | 
| 994 | SOME (lhs, rhs) => | |
| 995 | (case lhs of | |
| 996 | Var _ => true | |
| 36022 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 997 | | _ => (case rhs of Var _ => true | _ => false)) | 
| 55437 | 998 | | NONE => false) | 
| 36022 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 999 | in | 
| 55437 | 1000 | (case find_first removable_eq prems of | 
| 36022 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1001 | NONE => (prems, concl) | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1002 | | SOME eq => | 
| 55437 | 1003 | let | 
| 1004 | val (lhs, rhs) = HOLogic.dest_eq (HOLogic.dest_Trueprop eq) | |
| 1005 | val prems' = remove (op =) eq prems | |
| 1006 | val subst = | |
| 1007 | (case lhs of | |
| 1008 | (v as Var _) => | |
| 1009 | (fn t => if t = v then rhs else t) | |
| 1010 | | _ => (case rhs of (v as Var _) => (fn t => if t = v then lhs else t))) | |
| 1011 | in | |
| 1012 | remove_eq (map (map_aterms subst) prems', map_aterms subst concl) | |
| 1013 | end) | |
| 36022 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1014 | end | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1015 | in | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1016 | Logic.list_implies (remove_eq (prems, concl)) | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1017 | end | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1018 | in | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1019 | map_term thy remove_eqs intro | 
| 
c0fa8499e366
removing simple equalities in introduction rules in the predicate compiler
 bulwahn parents: 
36018diff
changeset | 1020 | end | 
| 35875 | 1021 | |
| 55437 | 1022 | |
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1023 | (* Some last processing *) | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1024 | |
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1025 | fun remove_pointless_clauses intro = | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1026 |   if Logic.strip_imp_prems (prop_of intro) = [@{prop "False"}] then
 | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1027 | [] | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1028 | else [intro] | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1029 | |
| 55437 | 1030 | |
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1031 | (* some peephole optimisations *) | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1032 | |
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1033 | fun peephole_optimisation thy intro = | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1034 | let | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
53887diff
changeset | 1035 | val ctxt = Proof_Context.init_global thy (* FIXME proper context!? *) | 
| 36610 
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
 wenzelm parents: 
36254diff
changeset | 1036 | val process = | 
| 57962 | 1037 |       rewrite_rule ctxt (Named_Theorems.get ctxt @{named_theorems code_pred_simp})
 | 
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1038 | fun process_False intro_t = | 
| 55437 | 1039 |       if member (op =) (Logic.strip_imp_prems intro_t) @{prop "False"}
 | 
| 1040 | then NONE else SOME intro_t | |
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1041 | fun process_True intro_t = | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1042 |       map_filter_premises (fn p => if p = @{prop True} then NONE else SOME p) intro_t
 | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1043 | in | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1044 | Option.map (Skip_Proof.make_thm thy) | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1045 | (process_False (process_True (prop_of (process intro)))) | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1046 | end | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36049diff
changeset | 1047 | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1048 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1049 | (* importing introduction rules *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1050 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1051 | fun import_intros inp_pred [] ctxt = | 
| 55437 | 1052 | let | 
| 1053 | val ([outp_pred], ctxt') = Variable.import_terms true [inp_pred] ctxt | |
| 1054 | val T = fastype_of outp_pred | |
| 1055 | val paramTs = ho_argsT_of_typ (binder_types T) | |
| 1056 | val (param_names, _) = Variable.variant_fixes | |
| 1057 | (map (fn i => "p" ^ (string_of_int i)) (1 upto (length paramTs))) ctxt' | |
| 1058 | val params = map2 (curry Free) param_names paramTs | |
| 1059 | in | |
| 1060 | (((outp_pred, params), []), ctxt') | |
| 1061 | end | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1062 | | import_intros inp_pred (th :: ths) ctxt = | 
| 55437 | 1063 | let | 
| 1064 | val ((_, [th']), ctxt') = Variable.import true [th] ctxt | |
| 1065 | val thy = Proof_Context.theory_of ctxt' | |
| 1066 | val (pred, args) = strip_intro_concl th' | |
| 1067 | val T = fastype_of pred | |
| 1068 | val ho_args = ho_args_of_typ T args | |
| 1069 | fun subst_of (pred', pred) = | |
| 1070 | let | |
| 1071 | val subst = Sign.typ_match thy (fastype_of pred', fastype_of pred) Vartab.empty | |
| 1072 | handle Type.TYPE_MATCH => | |
| 1073 |                 error ("Type mismatch of predicate " ^ fst (dest_Const pred) ^
 | |
| 1074 | " (trying to match " ^ Syntax.string_of_typ ctxt (fastype_of pred') ^ | |
| 1075 | " and " ^ Syntax.string_of_typ ctxt (fastype_of pred) ^ ")" ^ | |
| 1076 | " in " ^ Display.string_of_thm ctxt th) | |
| 1077 | in map (fn (indexname, (s, T)) => ((indexname, s), T)) (Vartab.dest subst) end | |
| 1078 | fun instantiate_typ th = | |
| 1079 | let | |
| 1080 | val (pred', _) = strip_intro_concl th | |
| 1081 | val _ = | |
| 1082 | if not (fst (dest_Const pred) = fst (dest_Const pred')) then | |
| 1083 | raise Fail "Trying to instantiate another predicate" | |
| 1084 | else () | |
| 1085 | in Thm.certify_instantiate (subst_of (pred', pred), []) th end | |
| 1086 | fun instantiate_ho_args th = | |
| 1087 | let | |
| 1088 | val (_, args') = | |
| 1089 | (strip_comb o HOLogic.dest_Trueprop o Logic.strip_imp_concl o prop_of) th | |
| 1090 | val ho_args' = map dest_Var (ho_args_of_typ T args') | |
| 1091 | in Thm.certify_instantiate ([], ho_args' ~~ ho_args) th end | |
| 1092 | val outp_pred = | |
| 1093 | Term_Subst.instantiate (subst_of (inp_pred, pred), []) inp_pred | |
| 1094 | val ((_, ths'), ctxt1) = | |
| 1095 | Variable.import false (map (instantiate_typ #> instantiate_ho_args) ths) ctxt' | |
| 1096 | in | |
| 1097 | (((outp_pred, ho_args), th' :: ths'), ctxt1) | |
| 1098 | end | |
| 1099 | ||
| 1100 | ||
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1101 | (* generation of case rules from user-given introduction rules *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1102 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1103 | fun mk_args2 (Type (@{type_name Product_Type.prod}, [T1, T2])) st =
 | 
| 55437 | 1104 | let | 
| 1105 | val (t1, st') = mk_args2 T1 st | |
| 1106 | val (t2, st'') = mk_args2 T2 st' | |
| 1107 | in | |
| 1108 | (HOLogic.mk_prod (t1, t2), st'') | |
| 1109 | end | |
| 1110 |   (*| mk_args2 (T as Type ("fun", _)) (params, ctxt) =
 | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1111 | let | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1112 | val (S, U) = strip_type T | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1113 | in | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1114 | if U = HOLogic.boolT then | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1115 | (hd params, (tl params, ctxt)) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1116 | else | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1117 | let | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1118 | val ([x], ctxt') = Variable.variant_fixes ["x"] ctxt | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1119 | in | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1120 | (Free (x, T), (params, ctxt')) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1121 | end | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1122 | end*) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1123 | | mk_args2 T (params, ctxt) = | 
| 55437 | 1124 | let | 
| 1125 | val ([x], ctxt') = Variable.variant_fixes ["x"] ctxt | |
| 1126 | in | |
| 1127 | (Free (x, T), (params, ctxt')) | |
| 1128 | end | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1129 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1130 | fun mk_casesrule ctxt pred introrules = | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1131 | let | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1132 | (* TODO: can be simplified if parameters are not treated specially ? *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1133 | val (((pred, params), intros_th), ctxt1) = import_intros pred introrules ctxt | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1134 | (* TODO: distinct required ? -- test case with more than one parameter! *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1135 | val params = distinct (op aconv) params | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1136 | val intros = map prop_of intros_th | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1137 | val ([propname], ctxt2) = Variable.variant_fixes ["thesis"] ctxt1 | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1138 | val prop = HOLogic.mk_Trueprop (Free (propname, HOLogic.boolT)) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1139 | val argsT = binder_types (fastype_of pred) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1140 | (* TODO: can be simplified if parameters are not treated specially ? <-- see uncommented code! *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1141 | val (argvs, _) = fold_map mk_args2 argsT (params, ctxt2) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1142 | fun mk_case intro = | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1143 | let | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1144 | val (_, args) = (strip_comb o HOLogic.dest_Trueprop o Logic.strip_imp_concl) intro | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1145 | val prems = Logic.strip_imp_prems intro | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1146 | val eqprems = | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1147 | map2 (HOLogic.mk_Trueprop oo (curry HOLogic.mk_eq)) argvs args | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1148 | val frees = map Free (fold Term.add_frees (args @ prems) []) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1149 | in fold Logic.all frees (Logic.list_implies (eqprems @ prems, prop)) end | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1150 | val assm = HOLogic.mk_Trueprop (list_comb (pred, argvs)) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1151 | val cases = map mk_case intros | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1152 | in Logic.list_implies (assm :: cases, prop) end; | 
| 55437 | 1153 | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1154 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1155 | (* unifying constants to have the same type variables *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1156 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1157 | fun unify_consts thy cs intr_ts = | 
| 55437 | 1158 | let | 
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1159 | val add_term_consts_2 = fold_aterms (fn Const c => insert (op =) c | _ => I); | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1160 | fun varify (t, (i, ts)) = | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1161 | let val t' = map_types (Logic.incr_tvar (i + 1)) (#2 (Type.varify_global [] t)) | 
| 55437 | 1162 | in (maxidx_of_term t', t' :: ts) end | 
| 1163 | val (i, cs') = List.foldr varify (~1, []) cs | |
| 1164 | val (i', intr_ts') = List.foldr varify (i, []) intr_ts | |
| 1165 | val rec_consts = fold add_term_consts_2 cs' [] | |
| 1166 | val intr_consts = fold add_term_consts_2 intr_ts' [] | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1167 | fun unify (cname, cT) = | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1168 | let val consts = map snd (filter (fn c => fst c = cname) intr_consts) | 
| 55437 | 1169 | in fold (Sign.typ_unify thy) ((replicate (length consts) cT) ~~ consts) end | 
| 1170 | val (env, _) = fold unify rec_consts (Vartab.empty, i') | |
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1171 | val subst = map_types (Envir.norm_type env) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1172 | in (map subst cs', map subst intr_ts') | 
| 55437 | 1173 | end handle Type.TUNIFY => | 
| 1174 | (warning "Occurrences of recursive constant have non-unifiable types"; (cs, intr_ts)) | |
| 1175 | ||
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1176 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1177 | (* preprocessing rules *) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1178 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1179 | fun preprocess_equality thy rule = | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1180 | Conv.fconv_rule | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1181 | (imp_prems_conv | 
| 51314 
eac4bb5adbf9
just one HOLogic.Trueprop_conv, with regular exception CTERM;
 wenzelm parents: 
50056diff
changeset | 1182 | (HOLogic.Trueprop_conv | 
| 
eac4bb5adbf9
just one HOLogic.Trueprop_conv, with regular exception CTERM;
 wenzelm parents: 
50056diff
changeset | 1183 |         (Conv.try_conv (Conv.rewr_conv (Thm.symmetric @{thm Predicate.eq_is_eq})))))
 | 
| 40101 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1184 | (Thm.transfer thy rule) | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1185 | |
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1186 | fun preprocess_intro thy = expand_tuples thy #> preprocess_equality thy | 
| 
f7fc517e21c6
moving general functions from core_data to predicate_compile_aux
 bulwahn parents: 
40054diff
changeset | 1187 | |
| 55437 | 1188 | |
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1189 | (* defining a quickcheck predicate *) | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1190 | |
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1191 | fun strip_imp_prems (Const(@{const_name HOL.implies}, _) $ A $ B) = A :: strip_imp_prems B
 | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1192 | | strip_imp_prems _ = []; | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1193 | |
| 46662 | 1194 | fun strip_imp_concl (Const(@{const_name HOL.implies}, _) $ _ $ B) = strip_imp_concl B
 | 
| 1195 | | strip_imp_concl A = A; | |
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1196 | |
| 55437 | 1197 | fun strip_horn A = (strip_imp_prems A, strip_imp_concl A) | 
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1198 | |
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1199 | fun define_quickcheck_predicate t thy = | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1200 | let | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1201 | val (vs, t') = strip_abs t | 
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51314diff
changeset | 1202 | val vs' = Variable.variant_frees (Proof_Context.init_global thy) [] vs (* FIXME proper context!? *) | 
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1203 | val t'' = subst_bounds (map Free (rev vs'), t') | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1204 | val (prems, concl) = strip_horn t'' | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1205 | val constname = "quickcheck" | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1206 | val full_constname = Sign.full_bname thy constname | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1207 |     val constT = map snd vs' ---> @{typ bool}
 | 
| 56239 | 1208 | val thy1 = Sign.add_consts [(Binding.name constname, constT, NoSyn)] thy | 
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1209 | val const = Const (full_constname, constT) | 
| 55437 | 1210 | val t = | 
| 1211 | Logic.list_implies | |
| 1212 | (map HOLogic.mk_Trueprop (prems @ [HOLogic.mk_not concl]), | |
| 1213 | HOLogic.mk_Trueprop (list_comb (const, map Free vs'))) | |
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51314diff
changeset | 1214 | val intro = | 
| 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51314diff
changeset | 1215 | Goal.prove (Proof_Context.init_global thy1) (map fst vs') [] t | 
| 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51314diff
changeset | 1216 | (fn _ => ALLGOALS Skip_Proof.cheat_tac) | 
| 39541 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1217 | in | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1218 | ((((full_constname, constT), vs'), intro), thy1) | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1219 | end | 
| 
6605c1e87c7f
removing clone in code_prolog and predicate_compile_quickcheck
 bulwahn parents: 
39383diff
changeset | 1220 | |
| 55437 | 1221 | end |