-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.ml
More file actions
40 lines (22 loc) · 1.02 KB
/
make.ml
File metadata and controls
40 lines (22 loc) · 1.02 KB
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
(* =========================================================================
Loader for the Reasoner with the JSON API
Petros Papapanagiotou
Center of Intelligent Systems and their Applications
School of Informatics, The University of Edinburgh
2009 - 2019
========================================================================= *)
let serv_dir = ref (!hol_dir ^ "/workflowfm/src/");;
(* = Core = *)
loads (!serv_dir ^ "make.composer.ml");;
(* = JSON API = *)
loads (!serv_dir ^ "api/json/make.ml");;
module Json_api = Json_api_make(Composer);;
(* = JSON Commands = *)
module Json_comms = Json_commands(Json_api);;
Json_comms.load();;
(* = JSON Deployment Commands = *)
loads (!serv_dir ^ "pap/deploy/json.ml");;
module Json_deploy_comms = Json_deploy_commands(Json_api);;
Json_deploy_comms.load();;
(* = JSON I/O = *)
module Json_composer_io = Json_composer_io_make(Json_api);;