-
Notifications
You must be signed in to change notification settings - Fork 1
/
OMCS.omlib
33 lines (26 loc) · 938 Bytes
/
OMCS.omlib
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
;;;===========================================================================
;;; PMC engine for OM
;;;===========================================================================
(:om-lib
(:version 1.4)
(:doc "PMC engine for OM")
(:author "M. Laurson / O. Sandred")
;;; SOURCE FILES TO LOAD
(:source-files
"sources/package"
"sources/constraint-utilities"
"sources/constraint-diagnostics"
"sources/search-variable"
"sources/search-engine"
"sources/PM-compiler"
"sources/forward-checking"
"sources/OMCs-utilities-split1"
"sources/Graphic-rule-interface"
)
(:symbols
(:packages
(:package (:name "PMC") (:functions "omcs::pmc-engine" "omcs::engine-info"))
(:package (:name "Rules") (:functions "omcs::wildcard-rule" "omcs::index-rule"))
(:package (:name "Tools") (:functions "omcs::partial-solution" "omcs::rev-partial-solution" "omcs::current-index"))
))
)