Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
488 views

Seemingly unnecessary case in the unification algorithm in SICP

I'm trying to understand the unification algorithm described in SICP here In particular, in the procedure "extend-if-possible", there's a check (the first place marked with asterix "*") which is ...
9
votes
2answers
611 views

Higher-order unification

I'm working on a higher-order theorem prover, of which unification seems to be the most difficult subproblem. If Huet's algorithm is still considered state-of-the-art, does anyone have any links to ...
9
votes
5answers
2k views

How can I implement the unification algorithm in a language like Java or C#?

I'm working through my AI textbook I got and I've come to the last homework problem for my section: "Implement the Unification Algorithm outlined on page 69 in any language of your choice." On page ...
7
votes
2answers
530 views

Differences between pattern matching and unification?

I thought I understand how pattern matching like found in Scala and Haskell is different from unification found in Prolog but my misunderstands of Prolog is great. What is some simple problems ...
6
votes
2answers
1k views

What is the optimal “most general unifier” algorithm?

The Question What is the most efficient MGU algorithm? What is its time complexity? Is it simple enough to describe as a stack overflow answer? I've been trying to find the answer on Google but ...
5
votes
2answers
103 views

GHC rejects ST monad code as unable to unify type variables?

I wrote the following function: (.>=.) :: Num a => STRef s a -> a -> Bool r .>=. x = runST $ do v <- readSTRef r return $ v >= x but when I tried to compile I got the ...
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
2answers
89 views

Requires MonadPlus (ST a) Instance

I'm reading the paper Typed Logical Variables in Haskell, but I'm failing to understand the details of the ultimate implementation. In particular, the backtracking state transformer introduced in ...
4
votes
3answers
574 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 ...
4
votes
3answers
633 views

Real world example of Unification in First Order Logic?

I know this is only part of a programming question, but at the moment, I'm doing a little bit of logic programming. One thing I still don't understand correctly is Unification in First Order Logic. I ...
4
votes
2answers
92 views

Type Parameter Unification

Why is this disallowed in C#? Actually I'd like to be able to write alias Y<A, B> : X<A, B>, X<B, A> The unification is actually desired here; if the A = B then just one method ...
3
votes
1answer
70 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
323 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
574 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
4answers
466 views

Applications of Unification?

What are (practical) applications of Unification ? Where it is been used in real world? I couldn't get the whole idea of what it is really about and why its considered as a part of Artificial ...
2
votes
1answer
568 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) ...
2
votes
5answers
156 views

Is there a system where executing a program and calling a function is unified?

I would like to be able to do one or more of the following from the shell: - call any function from the program not only the main - pass parameters that are not only strings (not only argv) - have ...
1
vote
1answer
37 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, [], _). ...
1
vote
3answers
530 views

Simplest example of need for “unification” in type inference

I'm trying to get my head around how type inference is implemented. In particularly, I don't quite see where/why the heavy lifting of "unification" comes into play. I'll give an example in "pseudo ...
1
vote
1answer
515 views

Type inference to unification problem

Has anyone an idea how the type inference problem E > hd (cons 1 nil) : α0 with the typing environment E={ hd : list(α1 ) → α1 , cons : α2 ...
1
vote
2answers
47 views

How to unify overlapping id systems into a single system?

What's the best way to unify several overlapping id systems into a unified one while maintaining the old id system. I have several different ids on my website... (E.g /publisher/1234 and ...
0
votes
0answers
27 views

creating a demonstrator for an expert system order 1 Unify method

In order to develop a demonstrator of an expert system using java I need to write a method of unification. In this method I need to test if the parameter is a variable or constant and to verify if ...
0
votes
2answers
69 views

“:=” and “=>” in Mercury

I recently came across this code example in Mercury: append(X,Y,Z) :- X == [], Z := Y. append(X,Y,Z) :- X => [H | T], append(T,Y,NT), Z <= [H | NT]. Being a Prolog programmer, I ...
0
votes
0answers
33 views

JQuery Unification of script and build in Check

I am trying to unify this script some. It ultimately does the same thing (just with different ID's and classes) opening separate containers. Not sure if the JQuery pros here can unify that or not. ...
0
votes
2answers
45 views

Unify a JQuery Script and build in a check

I am trying to consolidate this script a bit.. They both do almost the same thing. When a button is clicked, it opens a box. It might be tough, but what I DON'T want to happen is when one box is open ...
0
votes
2answers
409 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). ... ... ...
-3
votes
1answer
49 views

Unification of arrays and objects in JavaScript? [closed]

Could someone explain me the unification of arrays and objects in JavaScript?