added return value to TestTriNormal

This commit is contained in:
James E McClure 2018-09-13 23:01:34 -04:00
parent ad259be66e
commit b8ca0a4806

View File

@ -78,11 +78,11 @@ int main(int argc, char **argv)
nz = SDs_z(i,j,k);
double dotprod=U.x*nx + U.y*ny + U.z*nz;
if (dotprod < 0){
printf("negative %f \n",dotprod);
//printf("negative %f \n",dotprod);
count_minus++;
}
else{
printf("positive %f \n",dotprod);
//printf("positive %f \n",dotprod);
count_plus++;
}
}