Tagged Questions

9
votes
2answers
628 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
3k 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 ...
2
votes
4answers
484 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 ...
1
vote
1answer
154 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 ...