|
Revision 4601, 412 bytes
(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 | :- object(search_strategy, |
|---|
| 3 | instantiates(abstract_class), |
|---|
| 4 | specializes(object)). |
|---|
| 5 | |
|---|
| 6 | :- info([ |
|---|
| 7 | version is 1.0, |
|---|
| 8 | author is 'Paulo Moura', |
|---|
| 9 | date is 1998/3/23, |
|---|
| 10 | comment is 'State space search strategies.']). |
|---|
| 11 | |
|---|
| 12 | :- public(solve/3). |
|---|
| 13 | :- mode(solve(+object, +nonvar, -list), zero_or_more). |
|---|
| 14 | :- info(solve/3, |
|---|
| 15 | [comment is 'State space search solution.', |
|---|
| 16 | argnames is ['Space', 'State', 'Path']]). |
|---|
| 17 | |
|---|
| 18 | :- end_object. |
|---|