Parallel
mclaugh.lst
Associated article: Simulated Annealing
Tags: Parallel
_SIMULATED ANNEALING_ by Michael P. McLaughlin [LISTING ONE] /* ANNEAL.C -- Author: Dr. Michael P. McLaughlin */ #include <stdio.h> #include <math.h> #define ABS(x) ((x<0)?(-(x)):(x)) #define BOOLEAN int #define TRUE 1 #define ...


