1
vote
1answer
29 views
Reversing Part of a List in Prolog
My goal for this Prolog function is as follows:
Given two lists, x and y, return true if y can be formed from x by reversing a contiguous part of list x.
For example, if the input is x = [1, 3, 2, …
1
vote
1answer
26 views
prolog, copying lists.
im attempting to get my arms around some basic prolog but struggling a bit. in specific - im trying to got through a list of items and copy it, item by item into a new list. I can get it to reverse, …
-1
votes
1answer
78 views
Why is this prolog code wrong?
not(A), not(D), not(B), not(not(D));not(not(A)), D, not(B), not(not(D));not(not(A)), not(D),B, not(not(D));not(not(A)), not
(D), not(B), not(D).
It reports :
ERROR: f:/program
…
-2
votes
2answers
40 views
How to input the following data in prolog?
not(A()) and not(D()) and not(B()) and not(A()).
What's the right way?
1
vote
1answer
46 views
Prolog - PCP solver
I'm wondering if there's an (understandable) way to brute force solve Post correspondence problem using prolog predicates?
for example:
?- pcp(["1","11"),("10111","101")], S).
S = [2,1,1]
-1
votes
2answers
122 views
prolog program for determining whether any two pairs in a list have the same sum
How can I write a relation in prolog that determines if there are any two pairs in a list with the same sum. The relation should fail if there exist no pairs whose sums are equal. The relation …
0
votes
3answers
56 views
Pairing Two Lists
Hey guys, a few simple prolog questions that I'm hoping you can help me on. Basically, I am trying to write a function that takes input as two lists, and an integer. From there, the function will try …
0
votes
2answers
60 views
Prolog List Question
I'm trying to understand lists in prolog when I stumbpled over this problem:
there's a predicate mergeandmap/2 that should basically do this:
mergeandmap([[a1,...,an],...,[z1,...,zm]],[x1...xn])
…
1
vote
1answer
32 views
Prolog syntax - using function results
Hi,
I am trying to perform a sum operation on every result of :
combination(0,_,[]).
combination(K,L,[X|Xs]) :- K > 0,
el(X,L,R), K1 is K-1, combination(K1,R,Xs).
el(X,[X|L],L).
el(X,[_|L],R) :- …
0
votes
3answers
95 views
How to count how many times of a WORD occurs in a List?
How to count how many times of a WORD occurs in a List?
For example:
counthowmany(hello,[hello,how,are,you,hello,hello],N).
N gives the total number of word 'hello' occurs
Thanks
7
votes
7answers
2k 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 …
3
votes
8answers
1k views
What’s a good Prolog IDE for Linux?
I need to write some Prolog programs for a class.
Any recommendations?
0
votes
3answers
53 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
3answers
41 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
40 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) …
