Beschreibung:
Discussion about PROLOG.
|
|
|
Is Prolog the best language to solve this kind of problem?
|
| |
Hello, I have this problem containing some inequations and requirement to minimize a value. After doing some research on the Internet, I came to conclusion that using Prolog might be the easiest way to solve it. However, I never used Prolog before, and I would hate to waste my time learning it just to discover that it is not the right tool for this... Mehr »
|
|
write a prolog interpreter in prolog (ala Lisp)
|
| |
I tried the following, but it didn't handle cut correctly (I guess, because it makes separate frame for everything): interpret(','(A,!)):- interpret(A),!. interpret(','(!,A)):- !,interpret(A). interpret(','(A1,A2)):- !,(interpret(A1),interpret(A2) ). interpret(';'(A1,A2)):- !,(interpret(A1);interpret(A2) ).... Mehr »
|
|
DES 1.8.1 Released
|
| |
[Apologies for multiple receptions] Hello. In order to cellebrate the resurgence of Datalog in academia and industry (Datalog 2.0 workhop, just running now), I would like to contribute with a modest new release of DES fixing some problems. So, the new release Datalog Educational System version 1.8.1... 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 »
|
|
dcg question from Learn Prolog Now
|
| |
Hello, regarding [link] I'm wondering how to write a query which returns a sentence containing a conjunction. The knowledge base and my queries follow: s --> simple_s. s --> simple_s conj s. simple_s --> np,vp. np --> det,n.... Mehr »
|
|
PCE user-defined class
|
| |
Hi everyone, I need help about XPCE library. I want to get a list (or chain) with all variables defined into a PCE Class ( defined with predicate: variable(name, type, access, [comment] into a pce_[begin| end]_class block), to apply a common function to that list. In the documentation I found "instance_variable" method but i got the... Mehr »
|
|
Quintus --> Sicstus
|
| |
I have a Quintus Prolog code, what I need to port to Sicstus (and later maybe to SWI, the point is a free solution on Windows). Is there any automatic solution for this job? I have done some syntactic change, and now my problem is the Quintus put/1 procedure. The code calls put/1 like these: put(45)... Mehr »
|
|
swi-prolog deploy application
|
| |
i would like to deploy a stand-alone executable compiled under swi prolog. i have a license question: i am not used to license issues. can i include swi dlls along with my binaries? i have a technical question as well. is it possible to completely remove the menubar (in plwin.exe) without recompiling the sources?... Mehr »
|
|
Maximization problem
|
| |
Imagine you have two groups of units, hostile to each other. All units have different hp amount and various damage values, is there is more or less standard way in prolog to find the best sequence in which enemy units are killed, so that the cumulative hp amout of all of your survived units is maximized after all enemy units are dead? I can... Mehr »
|
|
|