2
votes
0answers
33 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 …
0
votes
2answers
39 views
members predicate in Prolog
I'd like to define a members predicate.
members(A, B) means that all members of the list A are members of list B.
top(N) defines how long A can be.
This is my try:
top(5).
members([X], L):- …
1
vote
3answers
56 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 …
0
votes
3answers
63 views
SWI Prolog - conditional NOT?
Hi,
I'm trying to make a prolog function. The funtion reads in a sentance, and then tries to extract a key word. If a key word is found, it prints a message. I want it to also print a message if no …
1
vote
2answers
54 views
Prolog list question
I have a database consisting of the following rules;
speaks(fred [german, english, dutch]).
speaks(mary [spanish, arabic, dutch]).
speaks(jim [norwegian, italian, english]).
speaks(sam [polish, …
1
vote
2answers
98 views
Complexity in Prolog programs?
In Prolog, problems are solved using backtracking. It's a declarative paradigm rather than an imperative one (like in C, PHP or Python). In this kind of languages is it worth to think in terms of …
0
votes
3answers
67 views
What’s the -> operator in Prolog and how can I use it?
I've read about it in a book but it wasn't explained at all. I also never saw it in a program. Is part of Prolog syntax? What's it for? Do you use it?
Thanks
2
votes
2answers
35 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
2answers
79 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
21 views
prolog - why this strange trace
here is the prolog code (which i sort of follow).
len([],0).
len([_|T],N) :- len(T,X), N is X+1.
and here is the trace for it (im running linux, swi)
[trace] ?- len([d,f,w,c],X).
Call: (7) …
6
votes
7answers
172 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).
0
votes
1answer
47 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 …
2
votes
2answers
42 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 …
0
votes
2answers
48 views
How to determine whether two list have same element in prolog?
How to determine whether two list have same element in prolog?
If i have two list A and B, i want to know whether they have the same element.
3
votes
2answers
152 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 …
