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!

link|improve this question

Could you show the fact for pred_B that terminates the recursive chain? – dasblinkenlight Jan 13 at 15:13
It's pred_B(,,end_of_file) since what it does is read a file line by line. And from what you're asking, and from the response I got I now remember that these kind of accumulative recursion methods have a base case that returns an empty list or a zero or something. I'll poke around. – Keyser Jan 13 at 15:38
It's working now! I couldn't have _ (underscores) in my base case. It needed empty lists so that it could unify the start of the subresults with []. Thank you very much (both of you). – Keyser Jan 13 at 15:44
FWIW: Your problem statement is unclear. Further, including actual code demonstrating the problem would help others help you. – Nicholas Carey Jan 13 at 17:42
@Carey Yeah I know, sry but I had my reasons for not posting any actual code and I really try to do it as often as I can. – Keyser Jan 14 at 0:25
feedback

1 Answer

up vote 1 down vote accepted

What seems to be missing in your program is a recursion anchor that will return an empty list instead of an unbound variable.

From your question, it's not clear what your program is iterating over, since both parameters of your pred_B/2 predicate seem to be output variables. Is it some kind of user input? And where does Res come from?

A little more code would have helped. Assuming that you only recursively call pred_B when there was another Res read or generated, then your predicate should unify Result1 with [] instead of leaving it unbound when there wasn't.

link|improve this answer
I understand what you're saying. I'll poke around in my base case. Solved it now (see comments on question). – Keyser Jan 13 at 15:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.