Beschreibung:
Discussion about PROLOG.
|
|
|
How should out of bounds values be handled?
|
| |
In this simple program: % [link] % P01 (*): Find the last element of a list % my_last(X,L) :- X is the last element of the list L % (element,list) (?,?) % Note: last(?Elem, ?List) is predefined my_last(X,[X]). my_last(X,[_|L]) :- my_last(X,L). % ========================= end program... Mehr »
|
|
ERROR: Arguments are not sufficiently instantiated
|
| |
Hi Everyone, I'm trying to test some examples I found in Internet to use broadcast system in prolog. I found this code (I added some lines to compiling): % Autor: % Fecha: 02/02/2010 ... name_of(a,ah). name_of(b,bh). name_of(c,ch). name_of(d,dh). ...variable(id, any, get, "Id visualised"). % name, type, access,... Mehr »
|
|
Why prolog is by far the best, most productive, easiest programming language
|
| |
Why prolog is by far the best, most productive, easiest programming language First of all I will only advocate the use of pure prolog - that means no recursion, lists, forall's, and any other features. Extra features that were added destroy the whole point of the elegance of prolog. A prolog equivalent is pervasively used everywhere right under... Mehr »
|
|
SWI, XPCE, C and Python
|
| |
Hi all, Not sure if this is really appropriate for the newsgroup, it really is quite deep in the implementation details of SWI-Prolog. I've got my version of python bindings for SWI-Prolog working quite well now, and have an RDFLib store built upon it. It works for basic values of "work". Code at [link]... Mehr »
|
|
SWI, Notation 3, C and Python
|
| |
I've been experimenting a bit with SWI Prolog, and have made some Python bindings using Cython, mostly to learn a bit about how SWI works. I arrived at this looking at Notation 3, with quoted graph support and trying to figure out how to bolt inferencing support onto rdflib, a commonly used RDF library for Python.... Mehr »
|
|
symbolic equation solver
|
| |
Hi all! I'm developing an educational math software, and I need a symbolic equation solver. I have been searching for months, and found this code: [link] It is Prolog Equation Solving System developed in 1985. I'm new in prolog, and I failed to compile it. Please help me! (I'm using Win7)... Mehr »
|
|
SwiPlCs - Restarting prolog
|
| |
Hello, I'm new with prolog and I'm studying for several days the possibility to use it in an AI program. I've started leraning/using SWI Prolog and I'm particulary trying out the C# interface for SWI-Porlog cause the main program will be in C#. I dont know if there are SwiPlCs users on the group, but there is one thing... Mehr »
|
|
comp.lang.prolog Frequently Asked Questions
|
| |
Frequently Asked Questions - comp.lang.prolog Last-modified: 2009-11-16 Last-changes: Mention irc.freenode.net's #prolog channel. Terrence Brannon. Markus Triska (Mar. 2 2007 - ... ) Remko Troncon (Jan. 6 2002 - Mar. 2 2007) Dirk-Jan Faber (Feb. 1 1999 - Jan. 6 2002) Jamie Andrews (Aug 26 1992 - Oct. 16 1997)... Mehr »
|
|
|