|
Revision 4601, 0.6 KB
(checked in by pmoura, 7 weeks ago)
|
|
Added svn:mime-type property to source files (set to text/x-logtalk).
|
-
Property svn:mime-type set to
text/x-logtalk
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | :- initialization(( |
|---|
| 3 | logtalk_load(library(all_loader), [reload(skip)]), % allow for static binding |
|---|
| 4 | logtalk_load(roots(loader), [reload(skip)]), % allow for static binding |
|---|
| 5 | logtalk_load([ |
|---|
| 6 | state_space, |
|---|
| 7 | water_jug, |
|---|
| 8 | farmer, |
|---|
| 9 | heuristic_state_space, |
|---|
| 10 | bridge, |
|---|
| 11 | eight_puzzle, |
|---|
| 12 | miss_cann, |
|---|
| 13 | salt3, |
|---|
| 14 | search_strategy, |
|---|
| 15 | blind_search1, |
|---|
| 16 | heuristic_search1, |
|---|
| 17 | performance]), |
|---|
| 18 | logtalk_load([ % the actual search methods are compiled with |
|---|
| 19 | breadth_first1, % the option events(on) to allow the use of |
|---|
| 20 | depth_first1, % the "performance" monitor |
|---|
| 21 | best_first1, |
|---|
| 22 | hill_climbing1], |
|---|
| 23 | [events(on)]))). |
|---|