Tagged Questions

0
votes
0answers
32 views

prolog program for finding sum of pairs in a list and comparing their sums

Can anyone please help me how to find the sum of pairs in a list and compare their list and the relation succeeds if their sums equal example list([2 3 4 1]) succeeds since 2+3=4+1 list([3 1 2 4 5 …
1
vote
3answers
35 views

Prolog wildcards

Hi guys, I was wondering, how would I use the underscore twice but check that both instances of that underscore unify? What I basically need is something that returns true if two elements of the …
0
votes
1answer
36 views

Prolog routing routine

Hi, I am trying to write a routing function but I cannot seem to get the result needed. This is the code so far. Predecessor finds the node that is linked to N and returns it as P. traceroute(_,L) …
0
votes
3answers
158 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
46 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
1answer
38 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 …
2
votes
2answers
82 views

substitute in a nested list (prolog)

/* substitute(X,Y,Xs,Ys) is true if the list Ys is the result of substituting Y for all occurrences of X in the list Xs. This is what I have so far: subs(_,_,[],[]). subs(X,Y,[X|L1],[Y|L2]):- …
1
vote
1answer
57 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
2answers
67 views

Given [1,2,3] in prolog get back [6,5,3] by reverse accumalation

Q. Given [1,2,3] in prolog get back [6,5,3] by reverse accumalation I have the start code: accumalate([H],[H]). accumalate([H1 | H2], [Hnew, H2]), Hnew is H1 + H2. .... I am looking for …
1
vote
3answers
73 views

Compute a list of distinct odd numbers (if one exists), such that their sum is equal to a given number.

:- use_module(library(clpfd)). % load constraint library % [constraint] Compute a list of distinct odd numbers (if one exists), such that their sum is equal to a given number. odd(Num) :- Num mod 2 …
1
vote
2answers
108 views

Prolog : Learning by example

I am trying to learn a little bit about swi-prolog (beyond the basic, useless programs). Can anyone explain (perhaps in pseudocode) what this sudoku solver and the related functions are doing? If …
0
votes
1answer
77 views

Working with lists in Prolog

First off let me state that this is part of a class exercise given as homework. But, the entire assignment is much more involved than the subject of this question. So.. I am searching through two …
2
votes
2answers
52 views

SWI-Prolog conditional statements

I'm trying to write a function that will test to see if the word hello is contained in a list. If it is contained, i don't want it to say "true", i want it to say : "yes, the word hello is contained …
1
vote
3answers
52 views

prolog cut off in method

I have a question I would like to ask you something about a code snippet: insert_pq(State, [], [State]) :- !. insert_pq(State, [H|Tail], [State, H|Tail]) :- precedes(State, H). insert_pq(State, …

1 2 next
15 30 50 per page