1
vote
1answer
26 views
Prolog - Access Control?
Hello guys, I am currently using interprolog - which is basically java with a prolog backend, allowing both java and prolog calls from each other respectively.
Now If i had say a frontend GUI coded …
1
vote
2answers
56 views
Prolog: how to write (and use) a function that lists all list permutations?
I've found such an example of naive sort written in prolog and I am trying to understand it:
naive_sort(List,Sorted):-perm(List,Sorted),is_sorted(Sorted).
is_sorted([]).
is_sorted)[_]).
…
3
votes
5answers
125 views
Multithreading in… functional languages? (Prolog)
When my friend started learning Prolog in school, I made fun of him for learning a useless language. However, he's showed me some stuff I never even knew possible; I want to know where this technique …
3
votes
2answers
52 views
Two stars in a Prolog list
Hi,
what are the two stars in a list?
[53, 5, 1, 53, 97, 115, 53, 50, 52, 121, 55, 56, 55, 97, 4, 1, 98, **]
I tried searching but no success.
Thanks,
Jan
0
votes
1answer
26 views
Vector addition in prolog
I'm writing a predicate to add two vectors. This is what I came up with:
add( [], [], 0 ).
add( [A], 0, A ).
add( [A], [B], C ) :- C is A + B.
add( A, B, C ) :- add( B, A, C ).
add( [H1|T1], [H2|T2], …
1
vote
2answers
45 views
Why won’t this Prolog predicate unify?
Hi,
I'm writing a predicate to find all possible successor states for an iteration of A* and put them in a list like [(cost, state), ...] , which stands at this at the moment:
addSuccessors(L, [], …
3
votes
1answer
35 views
Extending a Prolog goal through recursion?
I've implemented (finally) a few goals that will schedule a series of tasks according to a startBy startAfter and duration. The schedule goal however, accepts only the prescribed number of tasks. I'd …
4
votes
6answers
208 views
difference between SQL and Prolog
Hi,
I've started learning Prolog and wondering about theoritical difference from SQL language. For example they are both declarative paradigma languages, both support fact-driven knowledge database, …
1
vote
2answers
26 views
Prolog random and findall buit-ins
Ok! last Prolog question for a loong time!!
I'm trying to pick a response that is picked at random but all I can seem to do is pick the first one out of my tables of responses (see code)
I'm sure …
1
vote
1answer
28 views
Translate Prolog Words
Hello hello :D :D I'm working on this this wonderful Prolog project and I'm stuck at this situation where I need to translate certain words into other words (e.g "i" into "you". "my into "your")
…
1
vote
1answer
25 views
Prolog’s atom problem and beginner material.
I am VERY new at Prolog I am looking for any beginner material on Prolog. I am very interested in learning the language. Where' s good place to start? Online preferably
I also am having a bit of …
1
vote
2answers
41 views
Returning a value after a recursion in Prolog
Hello,
I decided to study some logic programming and I stumbled across a problem.
It is programmed in SWI Prolog.
test(A, B, N):-
nonvar(B),
B = final,
true.
test(A, B, N):-
N > 2,
test(A, …
2
votes
1answer
84 views
how to display blackshashes in SWI-Prolog
Hi,
I am trying to display a network share path in my Prolog output code.
The path is like :
\\fileserver\path\to\file.txt (ex1)
or
\\\\fileserver\\path\\to\\file.txt (ex2)
but If I …
3
votes
2answers
60 views
Prolog First Order Logic - Printing a Truth Table
I have to write program that prints a truth table of expressions.
So, I wrote the following function:
bool(true).
bool(fail).
tableBody(A,B,E) :-
bool(A),
bool(B) ,
write(A) ,
…
1
vote
10answers
114 views
What AI topic should i pick for my class project??
I'm taking my first AI course this semester at uni and we were asked to do a project on any AI topic that we find interesting and to impliment the code in "Prolog". One example is Implementing 4 or 5 …
