Performing Conditional Statements Using Formula Nodes

The conditional statement uses the same syntax as the if and else statements in C. For example, you might have a statement like:

if (y==x && a[2][3]<a[0][1]) {

int32 temp;

temp = a[2][3];

a[2][3] = y;

y=temp;

}

else

x=y;