You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pyswip
I have a HUGE amount of data in a Python app, and we're looking at
using SWI to massage subsets of it. The issue is that the data set is
to large to dump in its entirety into Prolog, so I'm hoping to find a
hook to a Python generator such that:
... :- isob(X).
Ties to:
def py_isob(X):
... generate cands ...
yield ob
And thus I can let Prolog resolution work forward to a solution while
only "spoon feeding" it with data from the Python side.