Quite recently, I started playing around with tabling in Prolog; some experiments that I did with b-prolog and xsb can be found in this question.
With the tables getting bigger and bigger, I realized that I needed to find some tabling options / parameters that would allow me to limit the amount of memory dedicated to tabling.
So far, I didn't find anything suitable in the manuals of yap, b-prolog and xsb.
Could you please pinpoint me to some useful information?
:- table posInt_CollatzSteps/2.
,:- table posInt_CollatzSteps(+,-).
and:- table posInt_CollatzSteps(+,-):10000.
but neither had a noticeable impact on memory consumption. – Halvorsen