I have a predicate that calls another predicate. Lets call them predicate A and B. Since I want to use the result from predicate B in A I do the call like this:
pred_B(Result1,Result2), where Result1 and Result2 are completely new names.
Then, in pred_B, I have a recursive behaviour which on the recursive call does this:
pred_B(Subresult1,Subresult2). And I rename them to be able to use append like this:
append(Res,Subresult1,Result1).
which concs all my recursive subresults into the final result Result1. And this works, it's just that the last element in this list Result1 is on the form "_1241" or some other number. I know that this is simply an uninitialized value and that it's there because I called pred_B using a name which didn't exist. But if I want to use the result from pred_B in pred_A, and recursively add the subresults to the total result in pred_B, how do I make these calls so that I get rid of the uninitialized thing?
That uninitialized value is really screwing up my program, and I've temporarily fixed it by reversing the list, and then reversing it back to its original state.
Cheers!
pred_Bthat terminates the recursive chain? – dasblinkenlight Jan 13 at 15:13