Tagged Questions

23
votes
19answers
2k views

Real world Prolog usage

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 …
9
votes
3answers
216 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. …
8
votes
2answers
219 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 …
8
votes
13answers
914 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 …
8
votes
10answers
685 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.
7
votes
8answers
236 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).
7
votes
6answers
1k 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 …
7
votes
5answers
391 views

Should LOGIC-techniques be blended into Mainstream Programming?

I refer specifically to predicate logic, somewhat as implemented in PROLOG, but less strictly bound to first-order logic. PROLOG-techniques offers powerful solutions towards data-analysis, …
4
votes
2answers
182 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 …
4
votes
2answers
251 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 …
4
votes
8answers
360 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 …
4
votes
1answer
693 views

Who owns the fish? Solving logic puzzles with code. [closed]

Possible Duplicates: Solving "Who owns the Zebra" programmatically? jQuery Zebra selector Logic problems are typically solved manually with a grid: Is there a generic (or …
4
votes
3answers
183 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 …
4
votes
4answers
528 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). …
3
votes
4answers
91 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 …

1 2 3 4 5 8 next
15 30 50 per page