lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


"Xavier Wang" <weasley.wx@gmail.com> wrote:
>
> hi list, Does anyone knows Scheme?
>
> I found a interesting thing:
> http://www.ccs.neu.edu/home/dorai/t-y-scheme/t-y-scheme-Z-H-16.html#node_chap_14
>
> does anyone have interest to implement it in Lua?

Backtracking search is quite a useful technique in AI programming.  However, there are many variant algorithms for different types of problems.  It is also quite common to operate on different kinds of graph and tree data structures.

You may want to read more about this in a book like Russell and Norvig's AI: A Modern Approach.

James Graves