in reply to AI -- Artificial Intelligence

I've twiddled with a number of AI algorithms, not necessarily in perl, but there's a lot going for perl in this area, specifically the fact that most AI's are not normal thought of in terms of interactions with the OS to any great extent, and using perl allows this interaction to occur. (Not that other languages can't do this, but perl makes the process much easier). This allows for more interesting uses of perl and AI; for example, I am attempting to develop a rules-based system that can be used as a possible backend of a socket connection for business logic. The possiblities are , of course, endless.


Dr. Michael K. Neylon - mneylon-pm@masemware.com || "You've left the lens cap of your mind on again, Pinky" - The Brain

Replies are listed 'Best First'.
Re: Re: AI -- Artificial Intelligence
by princepawn (Parson) on Jun 29, 2001 at 05:11 UTC
    for example, I am attempting to develop a rules-based system that can be used as a possible backend of a socket connection for business logic.
    I think the hardest part of mating logical formalism with Perl is that rules systems (ie, Prolog) have a built in search engine and a different means of using variables.
Re: Re: AI -- Artificial Intelligence
by princepawn (Parson) on Jul 02, 2001 at 06:51 UTC
    This allows for more interesting uses of perl and AI; for example, I am attempting to develop a rules-based system that can be used as a possible backend of a socket connection for business logic
    If you consider functional languages rule-based, then Erlang is the ticket for networked functional programming. The phone switching software for country Sweden was written entirely in Erlang.