/usr/share/hol88-2.02.19940316/contrib/koenig/koenig.ml is in hol88-contrib-source 2.02.19940316-19.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | % ===================================================================== %
% FILE : koenig.ml %
% DESCRIPTION : load theory koenig %
% AUTHOR : Paul Loewenstein %
% DATE : %
% MODIFIED : 11 April 1990 (for HOL88-1-12) %
% ===================================================================== %
% --------------------------------------------------------------------- %
% First, load the libraries %
% --------------------------------------------------------------------- %
load_library `num_thms`;;
load_library `quantifier`;;
load_library `pair_fun`;;
load_library `unwind_prune`;;
load_library `taut`;;
% --------------------------------------------------------------------- %
% Put the pathname to the library koenig onto the search path. %
% --------------------------------------------------------------------- %
let path = library_pathname() ^ `/koenig/` in
print_string `Updating search path`; print_newline();
set_search_path (union (search_path()) [path]);;
% --------------------------------------------------------------------- %
% Load (or attempt to load) the theory koenig %
% --------------------------------------------------------------------- %
if draft_mode()
then (print_string `Declaring theory koenig a new parent`;
print_newline();
new_parent `koenig`)
else (load_theory `koenig` ?
(print_string `Defining ML function load_koenig`;
print_newline() ;
loadf `load_koenig`));;
% --------------------------------------------------------------------- %
% Set up autoloading of theorems from koenig.th %
% --------------------------------------------------------------------- %
map (\name. autoload_theory(`definition`,`koenig`,name))
(map fst (definitions `koenig`));;
map (\name. autoload_theory(`theorem`,`koenig`,name))
(map fst (theorems `koenig`));;
|