Tagged Questions
4
votes
2answers
68 views
Deleting all members of a list without unification in Prolog [closed]
Possible Duplicate:
Prolog delete: doesn't delete all elements that unify with Element
In Prolog if you write this:
delete([(1,1),(1,2),(1,1),(3,4)],(1,_),L).
the result will be:
L ...
4
votes
3answers
578 views
What is a unification algorithm?
Well I know it might sound a bit strange but yes my question is: "What is a unification algorithm".
Well, I am trying to develop an application in F# to act like Prolog. It should take a series of ...
3
votes
1answer
71 views
Given a substitution S and list Xs, how to apply S to Xs
Suppose I have a substitution S and list Xs, where each variable occurring in Xs also occurs in S. How would I find the list S(Xs), i.e., the list obtained by applying the substitution S to the list ...
3
votes
1answer
324 views
Instantiate type variable in Haskell
EDIT: Solved. I was unware that enabling a language extension in the source file did not enable the language extension in GHCi. The solution was to :set FlexibleContexts in GHCi.
I recently ...
3
votes
3answers
332 views
Pattern matching equivalent variables in Haskell, like in Prolog
In prolog, we can do something like the following:
myFunction a (a:xs) = ...
This is, when the 1st argument of myFunction is the same as the first item of the list that's in the 2nd argument, this ...
3
votes
1answer
580 views
Prolog is vs = with lists
Why does this fail L is [1,2,3,4], and this works: L = [1,2,3]?
But L is 1, and L = 1 both work the same.
2
votes
2answers
248 views
Why does SWI-Prolog unify a quoted and unquoted string (without spaces) to the same rule?
Assume I have the following rules:
unify('test', 'this is a test').
run :- write('Enter something: '),
read(X),
unify(X, Y),
write('The answer is '), write(Y).
And then I ...
2
votes
1answer
569 views
prolog unification resolution
Why does this work:
power(_,0,1) :- !.
power(X,Y,Z) :-
Y1 is Y - 1,
power(X,Y1,Z1),
Z is X * Z1.
And this gives a stack overflow exception?
power(_,0,1) :- !.
power(X,Y,Z) ...
1
vote
1answer
38 views
Strange behaviour of unification pattern matching
So here it is, for my sudoku project I have a list, such as :
L = [_G1-0:0:0,_G19-0:6:2,_G22-0:7:2,_G25-0:8:2].
and I want to filter this to get only the free variables :
[_G1, _G19, _G22 and ...
1
vote
1answer
152 views
Unification - Infinity of results
I'm developing (in Java), for fun, an application which uses an unification algorithm.
I have chosen that my unification algorithm returns all the possible unifications. For example, if I try to ...
1
vote
2answers
319 views
Why won't this Prolog predicate unify?
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, [], _).
...
0
votes
2answers
411 views
Prolog Code Example: Unification
From an old final for my class:
Here is some prolog code:
mystery(1, 1).
mystery(N, F) :-
N1 is N-1,
mystery(N1,F1),
F is F1*N.
Question 1: What value is unified with P in
mystery(3, ...
0
votes
3answers
170 views
What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?
What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?
Doing it this way seems error prone and tedious:
foo(1,2).
foo(1,-2).
foo(-1,-2).
...
...
...