The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:AI-Prolog prolog"

AI::Prolog - Perl extension for logic programming. River stage one • 3 direct dependents • 3 total dependents

"AI::Prolog" is a pure Perl predicate logic engine. In predicate logic, instead of telling the computer how to do something, you tell the computer what something is and let it figure out how to do it. Conceptually this is similar to regular expressio...

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Term - Create Prolog Terms. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Engine - Run queries against a Prolog database. River stage one • 3 direct dependents • 3 total dependents

"AI::Prolog::Engine" is a Prolog engine implemented in Perl. The "new()" function actually bootstraps some Prolog code onto your program to give you access to the built in predicates listed in the AI::Prolog::Builtins documentation. This documentatio...

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Parser - A simple Prolog parser. River stage one • 3 direct dependents • 3 total dependents

There are no user-serviceable parts inside here. See AI::Prolog for more information. If you must know more, there are a few comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Article River stage one • 3 direct dependents • 3 total dependents

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Builtins - Builtin predicates that AI::Prolog supports River stage one • 3 direct dependents • 3 total dependents

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::TermList - Create lists of Prolog Terms. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Cookbook - Recipes for common Prolog problems River stage one • 3 direct dependents • 3 total dependents

Logic programming can take some time to get used to. This document is intended to provide solutions to common problems encountered in logic programming. Many of the predicates listed here will depend on other predicates defined here. If in doubt, see...

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Term::Cut - Perl implementation of the Prolog cut operator. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::ChoicePoint - Create a choicepoint object for the Engine. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Introduction - The what and the why of logic programming. River stage one • 3 direct dependents • 3 total dependents

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Term::Number - Perl implementation of Prolog numbers. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::KnowledgeBase - The Prolog database. River stage one • 3 direct dependents • 3 total dependents

There are no user-serviceable parts inside here. See AI::Prolog for more information. If you must know more, there are a few comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::TermList::Step - Perl implementation of Prolog "step" mechanism. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::TermList::Clause - Perl implementation of Prolog clauses. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Engine::Primitives - The code for running aiprolog builtins River stage one • 3 direct dependents • 3 total dependents

This module contains the code to handle the built-in predicates. The AI::Prolog::Engine assigns many builtins an ID number and this number is used to lookup the sub necessary to execute the built-in....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::TermList::Primitive - Perl implementation of Prolog primitives. River stage one • 3 direct dependents • 3 total dependents

See AI::Prolog for more information. If you must know more, there are plenty of comments sprinkled through the code. Note that primitives are generally not implemented in terms of Prolog predicates, but in terms of internal features that Prolog canno...

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Parser::PreProcessor - The AI::Prolog Preprocessor River stage one • 3 direct dependents • 3 total dependents

This code reads in the Prolog text and rewrites it to a for that is suitable for the AI::Prolog::Parser to read. Users of AI::Prolog should never need to know about this....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

AI::Prolog::Parser::PreProcessor::Math - The AI::Prolog math macro River stage one • 3 direct dependents • 3 total dependents

This code reads in the Prolog text and rewrites it to a for that is suitable for the AI::Prolog::Parser to read. Users of AI::Prolog should never need to know about this....

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC

aiprolog - A simple Prolog shell using AI::Prolog. River stage one • 3 direct dependents • 3 total dependents

"aiprolog" is a simple prolog shell using AI::Prolog as the backend. See the documentation for more detail on the Prolog features that AI::Prolog currently accepts. Commands Commands specific to aiprolog shell: "% more" -- enables prompting for more ...

DOUGW/AI-Prolog-0.741 - 26 Mar 2011 19:56:21 UTC
20 results (0.036 seconds)