Igor Kondrasovas wrote: > Hello, > > Iâm currently running an unexpected behavior while testing my code. > > With a tiny change on the values of my input query, I get the following > runtime error: > > âbb_min: search did not instantiate cost variableâ The message means what it says: your cost variable Cost is not instantiated at the end of labeling. Remove the minimize, and try running your program just with labeling: You see that at the end your Cost variable looks like _14253{[4, 5]}. Why? Because the U variables, from which the cost is computed, are not instantiated. You have to label them as well. -- JoachimReceived on Mon Nov 16 2009 - 07:56:45 CET
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET