Tagged Questions

Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.

learn more… | top users | synonyms

57
votes
24answers
8k 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 ...
29
votes
9answers
2k views

Why programming competition contestants use C++ and Java?

After competing in and following this year's Google Code Jam competition, I couldn't help but notice the incredible number of [successful] contestants that used C/C++ and Java. The distribution of ...
25
votes
11answers
3k views

Good beginners material on Prolog

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.
15
votes
6answers
997 views

Tennis match scheduling

I was asked this question on an exam. Nobody I spoke to found a solution for this question, so now I'm turning to stackoverflow for a solution. As the exam is over, I can't use it for any points, ...
14
votes
12answers
7k views

What's a good Prolog IDE for Linux?

I need to write some Prolog programs for a class. Any recommendations?
13
votes
13answers
2k 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 ...
13
votes
8answers
5k 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 ...
12
votes
4answers
287 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 ...
12
votes
2answers
563 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 ...
12
votes
5answers
3k 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 ...
12
votes
6answers
2k 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. ...
11
votes
3answers
222 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). ...
11
votes
3answers
800 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 ...
11
votes
3answers
667 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 ...
11
votes
12answers
2k views

Why hasn't logic programming caught on?

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 ...
10
votes
7answers
2k 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 ...
10
votes
8answers
1k views

Can you get a job thanks to your Prolog skills?

This Prolog question is introduced as an interview question. Can you get a job thanks to your Prolog skills? Is it used in the industry? (ok, ok, a job can be out of the industry too).
10
votes
2answers
2k 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 ...
9
votes
4answers
728 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 ...
9
votes
6answers
788 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 ...
8
votes
3answers
176 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 ...
8
votes
2answers
442 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. ...
8
votes
2answers
3k 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 ...
8
votes
2answers
593 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 ...
8
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 ...
7
votes
3answers
112 views

Algorithm - Ideal Distribution Between Multiple Workshops & Timeframes

I'm looking for an algorithm in order to solve following problem: Let's say I'm organizing a course with 300 attendees and 6 workshops divided over 3 Timeframes. Every attendee has to register on a ...
7
votes
5answers
508 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 ...
7
votes
1answer
229 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") ...
7
votes
1answer
135 views

Unit testing in XSB Prolog?

How do people working with XSB Prolog do unit testing? Is there a library available? Or is it possible to somehow use SWI-Prolog's plunit library in XSB? If there is not an available testing library ...
7
votes
2answers
1k views

Using A* to solve Travelling Salesman Problem

I've been tasked to write an implementation of the A* algorithm (heuristics provided) that will solve the travelling salesman problem. I understand the algorithm, it's simple enough, but I just can't ...
7
votes
5answers
459 views

Prolog; try to make fibonacci more effective?

This logic programming is really making a lap dance on my imperative programming skills. This is homework, so please just don't drop me the answer. This is what I have; fibo(N, 1) :-, N<2, !. ...
7
votes
3answers
726 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 ...
7
votes
2answers
404 views

Reading in multiple words for prolog

Im running prolog via poplog on unix and was wondering if there was a way to read in multiple words (such as encase it into a string). For instance, read(X) will only allow X to be 1 term. However, if ...
7
votes
8answers
1k views

Need to learn Prolog, Haskell for a C# programmer

I am a C# programmer, and after going through some wonderful discussions regarding functional programming and declarative programming. I feel I am not good at both :P, so, I was thinking of starting ...
7
votes
4answers
1k 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 ...
7
votes
4answers
1k views

Input in Prolog

I'm currently working on a recursive Prolog program to link routes together to create a basic GPS of the Birmingham area. At the moment I can get output as so: Input routeplan(selly_oak, aston, P). ...
6
votes
4answers
202 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.
6
votes
7answers
115 views

Beginner at Prolog here, hoping for a little guidance

I need to define divide so that List [1,2,3,4,5] divides into: a = [1,2,3} b = [4,5] I'm getting an error that says "Arguments are not sufficiently instantiated", and I don't know enough about the ...
6
votes
5answers
213 views

How Concurrent is Prolog?

I can't find any info on this online... I am also new to Prolog... It seems to me that Prolog could be highly concurrent, perhaps trying many possibilities at once when trying to match a rule. Are ...
6
votes
2answers
139 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 ...
6
votes
2answers
704 views

How do I express this 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 ...
6
votes
2answers
136 views

Prolog : Combining DCG grammars with other restrictions

I'm very impressed by Prolog's DCG and how quickly I can produce all the possible structures that fit a particular grammar. But I'd like to combine this search with other constraints. For example, ...
6
votes
1answer
251 views

A prolog for Prolog? [closed]

In case you write Prolog programs regularly you probably have your own library of predicates you always rely on. Some Prolog systems come with a rich set of predefined predicates and some not. Some ...
6
votes
1answer
99 views

How can I embed a Prolog-like inference engine into a .NET application?

Certain kinds of domain logic are represented more naturally using Prolog predicates than C# objects. One example of such a domain is representing family relationships. Is there a way to embed a ...
6
votes
2answers
156 views

NP-complete problem in Prolog

I saw this ECLiPSe solution to the problem mentioned in this XKCD comic. I tried to convert this to pure Prolog. go:- Total = 1505, Prices = [215, 275, 335, 355, 420, 580], ...
6
votes
2answers
640 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, ...
6
votes
2answers
377 views

Prolog Constants

Is there any way to define constants in prolog? I'd like to write something like list1 :- [1, 2, 3]. list2 :- [4, 5, 6]. predicate(L) :- append(list1, list2, L). The work-around I'm using now is ...
6
votes
4answers
540 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 ...
6
votes
1answer
3k 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 ...
6
votes
5answers
174 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?

1 2 3 4 5 26