Tagged Questions

2
votes
3answers
46 views

Prolog - recursing down family tree

I am trying to write a Prolog program that will print out the male successors of British Royalty in order. My attempt so far: son(elizabeth, charles). son(charles, william). son(charles, henry). …
2
votes
3answers
37 views

Prolog difference routine help!

I need some help with a routine that I am trying to create. I need to make a routine that will look something like this: difference([(a,b),(a,c),(b,c),(d,e)],[(a,_)],X). X = [(b,c),(d,e)]. I …
9
votes
3answers
232 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. …
1
vote
2answers
45 views

Whats wrong with this version of functor(Prolog)?

I tried to write functor inbuilt in Prolog. This is my version: lenlist(L,N) :- lenlist(L,0,N). lenlist([],N,N). lenlist([_|T],P,N) :- P1 is P+1 , lenlist(T,P1,N). functor1(Term,F,N) :- Term =.. …
0
votes
3answers
156 views

checking if a tree is a heap [in prolog]

I need some help writing a predicate heap(Tree) in prolog that succeeds if Tree is a heap that satisfies both the heap property and the shape property: The shape property: the tree is an almost …
1
vote
7answers
147 views

find the second largest element in the list

I know how to find the largest element of the list no problem, but how should I go about finding the second larget element? Say the predicate is secondlargest(+List,?Val) and succeeds if Val is the …
2
votes
1answer
45 views

mysql connection fails after 3000+ attempts

Hi, I was just testing a small script in Prolog to sanity check the MySQL connection. The connection fails randomly, after making around 3000+ connections. Is there any limitation in MySQL Server for …
0
votes
2answers
45 views

How to define a predicate in prolog

I am new to Prolog and I have so far learned how to define a predicate in a file and the run the interpreter to use it. But I would like to know if there is a way to define the predicate at the ?- …
1
vote
1answer
56 views

Prolog Beginner

I'm trying to make predicates such that for lists X and Y, rmlast is true if X and Y are the same list except for the fact that Y has 1 element more. So [1] [1,2] or [3,2] [3,2,5]. rmlast([], [_]). …
0
votes
1answer
37 views

Reading a string (from a file) in Prolog

I have written a lexer and a parser in Prolog. It unifies a string with its AST. This is part for a compiler/interpreter project I am working on. Naturally, I now want to read the string from a file …
7
votes
8answers
241 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).
2
votes
1answer
65 views

Parsing with DCGs in Scheme (without Prolog)?

Lots of Prolog-in-Scheme implementations are out there. E.g. Kanren, Schelog. Apparently in "Paradigms of AI Programming" Norvig implements Prolog-to-Lisp compiler in Lisp in order to use Definite …
3
votes
4answers
94 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 …
0
votes
1answer
50 views

Problem with integer division opertor in Prolog

This code is a part of the program that I am writing to solve a cryptarithmatic puzzle in prolog. I am solving this using CLPFD (SICStus Prolog). I am getting an error while using the inbuilt integer …
2
votes
3answers
87 views

Two clause definition to find the maximum number on a list.

How would I write a two clause recursive definition to find the maximum value in a list. So far I have written this: max(L,M):- max([H|T],M):- max(T,H,M). max([],M,M). max([H|T],Y,M):- H …

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