28 lines
394 B
Prolog
28 lines
394 B
Prolog
/*
|
|
//[Appendix] [\appendix]
|
|
|
|
[Appendix]
|
|
|
|
1 Initializing and Calling the Optimizer
|
|
|
|
[File ~calloptimizer.pl~]
|
|
|
|
The optimizer is started by loading this file.
|
|
|
|
*/
|
|
|
|
:- [opsyntax].
|
|
|
|
:-
|
|
assert(highNode(0)),
|
|
assert(boundarySize(0)),
|
|
assert(boundaryMaxSize(0)),
|
|
[optimizerNewProperties],
|
|
[database],
|
|
[statistics],
|
|
[operators],
|
|
[boundary],
|
|
[searchtree],
|
|
[testcases],
|
|
[auxiliary].
|