Amine Marref wrote: > Hello, > > I want to find the list of all solutions to a goal whose cost is to be > minimized using bb_min/3. > > e.g., I use > setof(VARS, > bb_min(search(VARS,0,input_order,indomain_max,complete,[]),Cost,_),LIST) > in order to populate LIST with elements VARS where Cost is the optimal > Cost in the search, and VARS is a possible assignment of variables that > yields the (optimal) Cost. > > Using the clause above, I am getting only *one* assignment to VARS > although there are many assignments to VARS in my problem that lead to > the optimal Cost. > > Any help? You have to do this in two steps: 1. find the optimum cost 2. find all solutions with this cost % Use bb_min/6 for step 1: bb_min(search(Vars), Cost, [], _Ignore, Cost, Options), % then repeat your search goal (Cost is now fixed): search(Vars). -- JoachimReceived on Sat May 15 2010 - 12:46:48 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET