Data Structures and Algorithms with Object-Oriented Design Patterns in Python
next up previous index

Example-Balancing Scales

Consider again the scales balancing problem described in Section gif. That is, we are given a set of n weights, tex2html_wrap_inline67693, which are to be placed on a pair of scales in the way that minimizes the difference between the total weight in each pan. Feasible solution to the problem all have the form tex2html_wrap_inline67635, where

displaymath67713

To solve this problem using simulated annealing, we need a strategy for generating random moves. The move generator should make small, random changes to the current solution and it must ensure that all possible solutions can be reached. A simple approach is to use the formula

displaymath68778

where tex2html_wrap_inline68657 is the initial solution, tex2html_wrap_inline68793 is a new solution, tex2html_wrap_inline68795 is a sequence of zeroes and ones generated randomly, and tex2html_wrap_inline62133 denotes elementwise addition modulo two.


next up previous index

Bruno Copyright © 2003, 2004 by Bruno R. Preiss, P.Eng. All rights reserved.