Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Unification is the process where the interpreter takes two terms and defines an term that satisfies them both. Practically speaking this means the interpreter must

Unification is the process where the interpreter takes two terms and defines an term that satisfies them both. Practically speaking this means the interpreter must assign values to variables in the two descriptions to make them match.
For example, if one term is f(X, Y) and the second is f(g(Y, a), h(a)) (where upper case names are variables and lower case are constants) then the two terms can be unified by identifying X with g(h(a), a) and Y with h(a) making both terms look like f(g(h(a), a), h(a)). The unification can be represented by a pair of substitutions {X -> g(h(a), a)} and {Y -> h(a)}. An algorithm for unification appears below.
Divide your solution into the following parts:
PART I: Substitution
A substitution is a mapping from from variables to terms. I will call each variable/term pair a "correspondence". There are several ways to represent a correspondence in PROLOG, such as a list of length two where the first element of the list is a variable and the second element is the term, or a functor with two components labeled "variable" and "term". Once you have chosen a representation for a correspondence, then you can represent a substitution as a list of correspondences. You should provide a set of rules for treating substitutions as an abstract data type. You should have rules to provide the following capabilities:
Define a new (empty) substitution
Add a correspondence to a substitution
Check whether a particular variable is the first member of any correspondence in a substitution and return the second member
Compose two substitutions to get a third
Apply a substitution to a term
PART II: Unification
Unification makes heavy use of substitution. For this part of the assignment, you should implement the unification algorithm described below, including the occurs check. In addition to constructing the unifying substitution (or failing where appropriate), your rules should print out the result of applying the substitution to the two terms being unified.
I need the code for this in either C++/Java.
Thanks in advance

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions