# file with available algorithms  
#
# S.Horn, 7.5.03
# syntax: set OptAlgorithm(ID) { KEYNAME FILENAME DESCRIPTION ACTIVEONOFF CLASS IMAGE}

set OptAlgorithm(01) { BlindSearch alg_blind.tcl "Blind Search" ON "Einfach" blind_s }
set OptAlgorithm(06) { Sintflut alg_sint.tcl "Sintflut Algorithmus" ON "Lokale Suche" lupe_s }
set OptAlgorithm(04) { SimulatedAnnealing alg_anneal.tcl "Simulated Annealing" ON "Lokale Suche" lupe_s}
set OptAlgorithm(05) { Threshold alg_thres.tcl "Threshold Accepting" ON "Lokale Suche" lupe_s}
set OptAlgorithm(12) { Genetic alg_genetic.tcl "Genetic" ON "Erweitert" genetic1_s }
set OptAlgorithm(02) { Brute alg_brute.tcl "Brute Force" ON Einfach blind_s }
set OptAlgorithm(11) { Tabu alg_tabu.tcl "Tabu Search" ON "Erweitert" genetic3_s }
set OptAlgorithm(10) { SB alg_sb.tcl "Shifting Bottleneck" ON "Erweitert" genetic3_s }
set OptAlgorithm(03) { Greedy alg_greedy.tcl "Greedy Search" ON "Lokale Suche" lupe_s }
set OptAlgorithm(08) { OBA1 alg_oba1.tcl "Old Bachelor Acceptance 1" ON "Lokale Suche" lupe_s }
set OptAlgorithm(09) { OBA2 alg_oba2.tcl "Old Bachelor Acceptance 2" ON "Lokale Suche" lupe_s }
set OptAlgorithm(07) { RRT alg_RRT.tcl "Record-to-Record Travel" ON "Lokale Suche" lupe_s }

# KEYNAME must be valid tcl syntax (no spaces please)
# ACTIVEONOFF must be ON or OFF
# no other restrictionz :)