Parallel
rowe.lst
Associated article: Optimization Technology
Tags: Parallel
_Optimization Technology_
by Keith Rowe
Example 1:
set_array(j)
int j;
{
int x,n,i;
x = 5; n = 2;
for (i=0;i<5;i++) {
a[i] = testDiv(x,n) + j;
}
}
testDiv(a,b)
int a;
int b;
{
if (b != 0 ) {
return ( a/b);
} ...


