| author | paulson <lp15@cam.ac.uk> | 
| Tue, 10 Oct 2017 14:03:51 +0100 | |
| changeset 66826 | 0d60d2118544 | 
| parent 66345 | 882abe912da9 | 
| child 67149 | e61557884799 | 
| permissions | -rw-r--r-- | 
| 63806 | 1  | 
(* Title: HOL/Tools/value_command.ML  | 
| 28227 | 2  | 
Author: Florian Haftmann, TU Muenchen  | 
3  | 
||
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
4  | 
Generic value command for arbitrary evaluators, with default using nbe or SML.  | 
| 28227 | 5  | 
*)  | 
6  | 
||
| 63806 | 7  | 
signature VALUE_COMMAND =  | 
| 28227 | 8  | 
sig  | 
9  | 
val value: Proof.context -> term -> term  | 
|
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
10  | 
val value_select: string -> Proof.context -> term -> term  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
11  | 
val value_cmd: string option -> string list -> string -> Toplevel.state -> unit  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
12  | 
val add_evaluator: string * (Proof.context -> term -> term) -> theory -> theory  | 
| 28227 | 13  | 
end;  | 
14  | 
||
| 63806 | 15  | 
structure Value_Command : VALUE_COMMAND =  | 
| 28227 | 16  | 
struct  | 
17  | 
||
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
18  | 
fun default_value ctxt t =  | 
| 56927 | 19  | 
if null (Term.add_frees t [])  | 
| 
66345
 
882abe912da9
do not fall back on nbe if plain evaluation fails
 
haftmann 
parents: 
63806 
diff
changeset
 | 
20  | 
then Code_Evaluation.dynamic_value_strict ctxt t  | 
| 56927 | 21  | 
else Nbe.dynamic_value ctxt t;  | 
| 28227 | 22  | 
|
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
23  | 
structure Evaluator = Theory_Data  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
24  | 
(  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
25  | 
type T = (string * (Proof.context -> term -> term)) list;  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
26  | 
  val empty = [("default", default_value)];
 | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
27  | 
val extend = I;  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
28  | 
fun merge data : T = AList.merge (op =) (K true) data;  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
29  | 
)  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
30  | 
|
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
31  | 
val add_evaluator = Evaluator.map o AList.update (op =);  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
32  | 
|
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
33  | 
fun value_select name ctxt =  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
34  | 
case AList.lookup (op =) (Evaluator.get (Proof_Context.theory_of ctxt)) name  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
35  | 
   of NONE => error ("No such evaluator: " ^ name)
 | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
36  | 
| SOME f => f ctxt;  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
37  | 
|
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
38  | 
fun value ctxt =  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
39  | 
let  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
40  | 
val evaluators = Evaluator.get (Proof_Context.theory_of ctxt)  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
41  | 
in  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
42  | 
if null evaluators  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
43  | 
then error "No evaluators"  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
44  | 
else (snd o snd o split_last) evaluators ctxt  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
45  | 
end;  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
46  | 
|
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
47  | 
fun value_maybe_select some_name =  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
48  | 
case some_name  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
49  | 
of NONE => value  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
50  | 
| SOME name => value_select name;  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
51  | 
|
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
52  | 
fun value_cmd some_name modes raw_t state =  | 
| 28227 | 53  | 
let  | 
54  | 
val ctxt = Toplevel.context_of state;  | 
|
55  | 
val t = Syntax.read_term ctxt raw_t;  | 
|
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
56  | 
val t' = value_maybe_select some_name ctxt t;  | 
| 28227 | 57  | 
val ty' = Term.type_of t';  | 
| 31218 | 58  | 
val ctxt' = Variable.auto_fixes t' ctxt;  | 
| 
37146
 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 
wenzelm 
parents: 
36960 
diff
changeset
 | 
59  | 
val p = Print_Mode.with_modes modes (fn () =>  | 
| 28227 | 60  | 
Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t'), Pretty.fbrk,  | 
61  | 
Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' ty')]) ();  | 
|
62  | 
in Pretty.writeln p end;  | 
|
63  | 
||
| 
36960
 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 
wenzelm 
parents: 
33522 
diff
changeset
 | 
64  | 
val opt_modes =  | 
| 62969 | 65  | 
  Scan.optional (@{keyword "("} |-- Parse.!!! (Scan.repeat1 Parse.name --| @{keyword ")"})) [];
 | 
| 28227 | 66  | 
|
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
67  | 
val opt_evaluator =  | 
| 62969 | 68  | 
  Scan.option (@{keyword "["} |-- Parse.name --| @{keyword "]"})
 | 
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
69  | 
|
| 
36960
 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 
wenzelm 
parents: 
33522 
diff
changeset
 | 
70  | 
val _ =  | 
| 
59936
 
b8ffc3dc9e24
@{command_spec} is superseded by @{command_keyword};
 
wenzelm 
parents: 
59323 
diff
changeset
 | 
71  | 
  Outer_Syntax.command @{command_keyword value} "evaluate and print term"
 | 
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
72  | 
(opt_evaluator -- opt_modes -- Parse.term  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
73  | 
>> (fn ((some_name, modes), t) => Toplevel.keep (value_cmd some_name modes t)));  | 
| 28227 | 74  | 
|
| 59323 | 75  | 
val _ = Theory.setup  | 
| 56926 | 76  | 
  (Thy_Output.antiquotation @{binding value}
 | 
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
77  | 
(Scan.lift opt_evaluator -- Term_Style.parse -- Args.term)  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
78  | 
    (fn {source, context, ...} => fn ((some_name, style), t) => Thy_Output.output context
 | 
| 43612 | 79  | 
(Thy_Output.maybe_pretty_source Thy_Output.pretty_term context source  | 
| 
58100
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
80  | 
[style (value_maybe_select some_name context t)]))  | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
81  | 
  #> add_evaluator ("simp", Code_Simp.dynamic_value)
 | 
| 
 
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
 
haftmann 
parents: 
56975 
diff
changeset
 | 
82  | 
  #> add_evaluator ("nbe", Nbe.dynamic_value)
 | 
| 59323 | 83  | 
  #> add_evaluator ("code", Code_Evaluation.dynamic_value_strict));
 | 
| 43612 | 84  | 
|
| 28227 | 85  | 
end;  |