#ifndef __GA_PARAM_H__ #define __GA_PARAM_H__ int POPULATION_SIZE = 5000; int MUTATE = 50; int RANDOM_SEED = 151; int TABU_SIZE = 200; int HEURISTIC = TABU_SEARCH; int RETRIES_FACTOR = 2; float RAND_PROB = 0.7; GENE* currentGeneration; GENE* nextGeneration; int solutionFound; /* An int array of the size of literals for local use by any function. Declare so that functions do not keep mallocing and freeing */ int* functionUse_literalsSize; /* Best solution found so far */ int* bestSolution; /* Fitness value of the best solution */ int bestSolutionValue; #endif