Tagged Questions

2
votes
3answers
66 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 …
0
votes
3answers
109 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). …
1
vote
1answer
60 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.
0
votes
1answer
80 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 …
8
votes
2answers
217 views

Seemingly unnecessary case in the unification algorithm in SICP

Hi guys, 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 wi …
5
votes
2answers
283 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 you …
0
votes
3answers
160 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 e …
2
votes
1answer
291 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 answ …
2
votes
5answers
122 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 …
0
votes
1answer
169 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 , …
1
vote
2answers
36 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/1 …