The one-max problem is a basic problem.
Given a bit string of 0's and 1's, the aim is to find a bit string which contains the most 1's.
Open terminal
make
-
Run directly in the terminal by typing the following:
#./main [algo] [runs] [iter] [bits] [filename] [temperature] [annealing rate] ./main sa 30 1000 100 "" 2 0.9
-
Or if you want to run multiple times, just by opening the "search.sh" and add whatever you want and run by typing
./search.sh
in the terminal.
You can change the iteration block by modifying
const int block=10;
in "execute.hpp".