| author | wenzelm | 
| Wed, 10 Nov 2010 15:47:56 +0100 | |
| changeset 40459 | 913e545d9a9b | 
| parent 38731 | 2c8a595af43e | 
| child 47108 | 2a1953f0d20d | 
| permissions | -rw-r--r-- | 
| 38117 | 1 | (* Title: HOL/Library/Code_Prolog.thy | 
| 2 | Author: Lukas Bulwahn, TUM 2010 | |
| 3 | *) | |
| 4 | ||
| 5 | header {* Code generation of prolog programs *}
 | |
| 6 | ||
| 7 | theory Code_Prolog | |
| 8 | imports Main | |
| 9 | uses "~~/src/HOL/Tools/Predicate_Compile/code_prolog.ML" | |
| 10 | begin | |
| 11 | ||
| 38731 
2c8a595af43e
invocation of values for prolog execution does not require invocation of code_pred anymore
 bulwahn parents: 
38117diff
changeset | 12 | section {* Setup for Numerals *}
 | 
| 
2c8a595af43e
invocation of values for prolog execution does not require invocation of code_pred anymore
 bulwahn parents: 
38117diff
changeset | 13 | |
| 
2c8a595af43e
invocation of values for prolog execution does not require invocation of code_pred anymore
 bulwahn parents: 
38117diff
changeset | 14 | setup {* Predicate_Compile_Data.ignore_consts [@{const_name number_of}] *}
 | 
| 
2c8a595af43e
invocation of values for prolog execution does not require invocation of code_pred anymore
 bulwahn parents: 
38117diff
changeset | 15 | setup {* Predicate_Compile_Data.keep_functions [@{const_name number_of}] *}
 | 
| 
2c8a595af43e
invocation of values for prolog execution does not require invocation of code_pred anymore
 bulwahn parents: 
38117diff
changeset | 16 | |
| 38117 | 17 | end | 
| 18 |