Suppose I have a predicate that sometimes gives me multiple outputs. Like this -
foo(Number, Out) :- Number < 10, Out = less_than_ten.
foo(Number, Out) :- Number > 0, Out = more_than_zero.
How might I get hold of all the values for Out
that foo
gives in another predicate, bearing in mind it can sometimes give one and sometimes give multiple (e.g. in a list)?
Edit - not quite sure the answers I've got answer my question so I'll be more specific. Taking the above predicate, I could run the query foo(5, Out).
This satisfies both rules, so if I run it in SWI-prolog I'll get this -
?- foo(5, Out).
Out = less_than_ten
Then I can enter a semi-colon to get prolog to backtrack and look for the other solution -
?- foo(5, Out).
Out = less_than_ten ;
Out = more_than_zero.
So if I was executing this predicate within another, how do I get all the valid values for Out, given Number = 5?
If you are only considering integers, you can opt to use CLP(FD). Then your predicate foo might look something like this:
You can use this predicate to test if a list of numbers is in your desired range:
If you want to use it to generate lists of integers in that range, you have make sure, that
Nums
is a list in order to avoid an instantiation error. You can do that by prefixing a goal length/2 in your query:These answers consist of residual goals (see the CLP(FD) documentation for details). If you want to see actual numbers, you have to add a goal to label the list: