To represent the function
f(x) =
if x < -2 then -1
else
if x > 2 then +1
else
0
The decision tree is represented as
[-1, [lt, -2], [1, [gt, 2], 0] ]
Similarly, to represent the function
f(x) =
if x < 0 then
if x < -3 then -1
else 0
else
if x < 3 then +1
else +2 `
we use the tree:
[-1,[lt,-3],0],[lt,0],[1,[lt,3],2]]
How do I write Prolog code for the evaluate( DT, X, Y ) predicate that holds if Y is the value obtained by evaluating the decision tree DT on the value X?
Sample input and output is as follows:
?- evaluate([-1,[lt,-2],[1,[gt,2],0]],1,X).
X = 0 ? ;
?- evaluate([[-1,[lt,-3],0],[lt,0],[1,[lt,3],2]],7,X).
X = 2 ? ;