Tagged Questions

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 ...
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 ...
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 ...