- Notifications
You must be signed in to change notification settings - Fork71
Open
Description
I am currently usingpython-constraint to generate specific budget allocations I can then feed into an optimisation engine. The constraints these allocations must obey are quite complex andpython-constraint proves to be really useful in finding them.
I would need to generate just a limited amount of allocations, however the current implementation ofGetSolutions() aims always at computing all of them. As a consequence sometimes it takes ages to get access to any useful result.
Wouldn't be possible to add an additional parameter inGetSolutions() to tune the number of solutions the solver has to produce? This would help in reducing the amount of time a user has to wait to get some result.