Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.
83
votes
24answers
15k views
Real world Prolog usage [closed]
Many study Prolog in college, but I have personally not come in contact with it professionally. The traditional examples given are AI and expert system applications, but what have you used it for and ...
44
votes
11answers
7k views
Good beginners material on Prolog [closed]
I am looking for good beginners material on Prolog, both online and printed. I am not only interested in 'learning the language' but also in background and scientific information.
28
votes
1answer
648 views
Predicate to declare descending/ascending coordinates using finite domains
I'd like to write a predicate, descendo, which declares that the first given coordinate [y, x] is descending to the second given coordinate (imagine the board with [0, 0] at the left upper corner).
A ...
25
votes
7answers
3k views
difference between SQL and Prolog
I've started learning Prolog and wondering about theoritical difference from SQL language. For example they are both declarative paradigma languages, both support fact-driven knowledge database, both ...
24
votes
5answers
7k views
Haskell vs. Prolog comparison
What kind of problems is better solved in Prolog than in Haskell? What are the main differences between these two languages?
ADDED: Is there a Haskell library (kind of a logical solver) that can ...
24
votes
5answers
2k views
Pattern Matching - Prolog Vs Haskell
This is not a homework question, rather an exam study guide question. What is the difference between pattern matching in Prolog Vs Haskell?
I've done some research and reading up on the theories ...
24
votes
7answers
706 views
How does Prolog technically work? What's under the hood?
I want to learn more about the internals of Prolog and understand how this works.
I know how to use it. But not how it works internally. What are the names of the algorithms and concepts used in ...
23
votes
12answers
4k views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint ...
23
votes
9answers
8k views
Integrating Prolog with C#
Does anyone know of a nice (and preferably free) way to integrate Prolog and C#?
Im looking to create a Prolog dll or similar to call from my managed code, and retrieve an answer once all the ...
22
votes
14answers
12k views
What's a good Prolog IDE for Linux? [closed]
I need to write some Prolog programs for a class.
Any recommendations?
21
votes
6answers
2k views
Tennis match scheduling
There are a limited number of players and a limited number of tennis courts. At each round, there can be at most as many matches as there are courts.
Nobody plays 2 rounds without a break. Everyone ...
19
votes
2answers
10k views
Forward Chaining vs Backward Chaining
What is one good for that the other's not in practice? I understand the theory of what they do, but what are their limitations and capabilities in practical use? I'm considering Drools vs a java ...
17
votes
2answers
1k views
Swi prolog in Semantic Web
I would like to listen from people who have real world programming experience in using swi-prolog's semantic library.
Edit: The reason for this question is, among the many people I talked to with ...
17
votes
2answers
420 views
Exception thrown when trying to use JPL and YAP Prolog in OS X
I am trying to use JPL for the interaction of Java programs and YAP Prolog.
In my java file, this line is throwing an exception:
Query query = new Query("consult", new Term[] { new Atom("test.pl") ...
16
votes
6answers
3k views
Difference between logic programming and functional programming
I have been reading many articles trying to understand the difference between functional and logic programming, but the only deduction I have been able to make so far is that logic programming defines ...
15
votes
3answers
1k views
Hash tables in prolog
I was solving a puzzle in prolog the other day and realized that were I using another programming language, I would have made use of a hash table/dictionary, but as far as I know this isn't really ...
14
votes
5answers
20k views
'if' in prolog?
Probably a stupid question, but I can't find any documentation anywhere for it. Is there a way to do an if in prolog, e.g. if a variable is 0, then to do some actions (write text to the terminal). An ...
14
votes
13answers
3k views
Why hasn't logic programming caught on? [closed]
As time goes by, it appears more and more like functional programming is having more of an effect on other programming languages. We're starting on Prolog in my AI class, and it seems like there are ...
14
votes
2answers
2k views
Why is this prolog query both true and false?
My SWI-Prolog knowledge base contains the following two facts:
f(a,b).
f(a,c).
Now if I pose the query
?- f(a,c).
true.
But
?- f(a,b).
true ;
false.
Why is f(a,b) both true and false? This ...
14
votes
6answers
3k views
N-Queens Problem..How far can we go?
The N-Queens Problem:
This problem states that Given a chess board of size N by N. Find the different permutations in which N queens can be placed on the Board without any one killing each other.
...
14
votes
3answers
483 views
Parsing in Prolog without cut?
I found this nice snippet for parsing lisp in Prolog (from here):
ws --> [W], { code_type(W, space) }, ws.
ws --> [].
parse(String, Expr) :- phrase(expressions(Expr), String).
...
14
votes
3answers
392 views
Haskell's type system and logic programming - how to port Prolog programs to type level
I'm trying to understand the relation between a logic programming language(Prolog in my case) and Haskell's type system.
I know both use unification and variables to find values(or types, in ...
13
votes
7answers
2k views
Relational/Logic Programming in Python?
I'm a longtime python developer and recently have been introduced to Prolog. I love the concept of using relationship rules for certain kinds of tasks, and would like to add this to my repertoire.
...
13
votes
3answers
939 views
What are your recomendations for a C++ interface to Prolog?
I'm interested in using Prolog in a C++ program I'm developing. I've come across the SWI-Prolog interface for C++, but I wanted to ask the SO crowd what your personal experience and reccomendation ...
12
votes
1answer
9k views
Prolog - ASSERT and RETRACT
I was wondering, I am aware you can use assert to add facts or rules or whatever if you have declared the predicate to be -:dynamic, but this only allows the changes that are made to be kept in that ...
12
votes
2answers
2k views
How do I express this in clojure/core.logic?
I am having trouble trying to express certain types of information using clojure/core.logic so that the information is readily available and can be queried. Take the following as an example:
Red ...
12
votes
6answers
1k views
Non-deterministic programming languages
I know in Prolog you can do something like
someFunction(List) :-
someOtherFunction(X, List)
doSomethingWith(X)
% and so on
This will not iterate over every element in List; instead, it ...
12
votes
4answers
351 views
Programming for Young tableaux
A strange question follows:
I'm doing a problem solving competition @ my school, and they allow us to use a computer. Since I'm the only one in the competition who knows how to code, I use C and ...
11
votes
4answers
7k views
Lisp and Prolog for Artificial Intelligence?
Now since i've taken a class 3 years ago in A.I. im clearly proficient enough to ask this question......just kidding just kidding ;)
but seriously, what is it about these languages that make them so ...
11
votes
10answers
2k views
Can you do Logic Programming in Scala?
I read somewhere that Pattern Matching like that supported by the match/case feature in Scala was actually borrowed from Logic languages like Prolog.
Can you use Scala to elegantly solve problems ...
11
votes
3answers
4k views
Prolog - member predicate one-liner
Interview question!
This is how you normally define the member relation in Prolog:
member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head
% that is, if X is ...
11
votes
4answers
995 views
What is more interesting or powerful: Curry/Mercury/Lambda-Prolog/your suggestion
I would like to ask you about what formal system could be more interesting to implement from scratch/reverse engineer.
I've looked through some existing and rather open (open in the sense of ...
11
votes
6answers
2k views
Good IDE to get started with prolog
I need to start learning Prolog for my job.
I haven't used Prolog before and my company needs to build a program that will use Prolog.
So the program will be used commercially.
So some questions:
...
11
votes
1answer
2k views
Prolog existence_error following Seven Languages in Seven Weeks
I'm just following the book Seven Languages in Seven Weeks.
I've installed gprolog in my Mac machine using command port install gprolog-devel and run first prolog code.
likes(wallace, cheese).
...
10
votes
5answers
2k views
Logical Languages - Prolog or Lisp/Smalltalk or something else?
So, I am writing some sort of a statistics program (actually I am redesign it to something more elegant) and I though I should use a language that was created for that kind of stuff (dealing with huge ...
10
votes
4answers
2k views
Hello world in Prolog
I'm tearing my hair out trying to find how to just write a Hello World program in Prolog. I just want to create a program that runs like so:
> ./hw
Hello, world!
>
The problem is that every ...
10
votes
2answers
1k views
Prolog GNU - Univ operator? Explanation of it
So the univ operator. I don't exactly understand it.
For example this:
foo(PredList,[H|_]) :- bar(PredList,H).
foo(PredList,[_|T]) :- foo(PredList,T),!.
bar([H|_],Item) :- G =.. [H,Item],G.
...
10
votes
4answers
2k views
Executing prolog code on an iPhone
I currently have the need to execute prolog code in an application I am making. I am aware that Apple probably never would allow something like this in the App Store, but that is not the intention ...
9
votes
3answers
2k views
Prolog - unusual cons syntax for lists
I have come across an unfamiliar bit of Prolog syntax in Lee Naish's paper Higher-order logic programming in Prolog. Here is the first code sample from the paper:
% insertion sort (simple version)
...
9
votes
7answers
2k views
What is SML used for?
What are the uses of SML in the real word?
Are its practical uses similar to that of Prolog?
9
votes
5answers
2k views
prolog to SQL converter
Without thinking to much, it seems to me that a large set of Prolog's functionality could be implemented as relational calculus (a.k.a. SQL).
Has anyone heard of any tools to automatically convert ...
9
votes
5answers
243 views
Program and Data are the Same in Prolog?
I have heard that in Prolog, program and data are the same thing. What does that mean?
9
votes
3answers
479 views
Programming in the large with prolog
I'm trying to keep my Prolog code modular, and I was wondering if anyone had any advice as to how to do this. The way I was doing this with simple consults, but that is getting cumbersome as the ...
9
votes
3answers
3k views
Prolog: Filtering a list?
I'm currently working on a very short project on Prolog, and just got stuck trying to apply a "filter" I have created to a list. I have what you could call the filter ready, but I can't apply it. It'd ...
9
votes
2answers
2k views
How do I include a .pl file in Prolog?
I'd like to include code from another source file. Does anyone know how to do that?
9
votes
5answers
554 views
Lazy lists in Prolog?
Is it possible to have lazy lists in Prolog? Something like the following:
ones([1 | Y]) :- ones(Y).
Although this obviously doesn't work as it's written.
9
votes
2answers
272 views
Prolog Beginner - Is This a Bad Idea?
The application I'm working on is a "configurator" of sorts. It's written in C# and I even wrote a rules engine to go with it. The idea is that there are a bunch of propositional logic statements, and ...
9
votes
2answers
1k views
F# and Fuzzy Logic
I know it might sound strange but I would like to know one thing in this new world where Microsoft Visual F# is getting into.
There are many application of this language, I am going to learn, ...
9
votes
3answers
1k views
How can I implement, “I am my own Grandpa”, in Prolog?
The following story is from N. Wirths (1976) Algorithsm + Datastructures = Programs.
I married a widow (let's call her W)
who had a grown-up daughter (call her
D). My father (F), who visited ...
9
votes
4answers
2k views
Prolog Compiler for .Net
Can anyone recommend a Prolog compiler for .Net.
The ones that I have been able to find searching the net, do not appear to have been updated for several years.
Thanks
Shiraz