/usr/share/hol88-2.02.19940316/contrib/CSP/csp.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 | % Only autoloads the theory process.th and its child theories, %
% i.e. the trace semantic model for the subset of CSP described %
% in README. %
% The theories of, for example operator laws and syntactic type %
% for processes and denotational semantics, can be loaded %
% explicitly if required, since these are still incomplete. %
if draft_mode()
then (print_newline();
print_string`process declared a new parent`;
print_newline();
new_parent`process`)
else load_theory`process`;;
let autoload_defs_and_thms thy =
map (\name. autoload_theory(`definition`,thy,name))
(map fst (definitions thy));
map (\name. autoload_theory(`theorem`,thy,name))
(map fst (theorems thy));
();;
map autoload_defs_and_thms
[`stop`; `prefix`; `run`; `choice`; `parallel`; `after`; `mu`];;
|