reset password
Author Message
BowenWaugh
Posts: 2
Posted 13:57 Oct 18, 2019 |

For this: Integrate the propagator with search so you can run propagation after each search step. How many assignments are required to solve various problems with and without propagation? These files should be compatible with the propagator: send_more_money_basic.py and csp.py.

Does this mean the propagator functions of the send_more_money_with_propagators.py must be integrated into the send_more_money_basic.py and csp.py?

Thanks. 

rabbott
Posts: 1649
Posted 15:20 Oct 18, 2019 |

send_more_money_with_propagators.py replaces send_more_money_basic.py. So you don't have to modify send_more_money_basic.py. This about how you would integrate the propagator into the search function of csp.py. Every time a new value is assigned to a variable, the propagator should see what it can make of it.