I think you're wondering why the redirection is outside the parentheses.
In this line:
if ( $PROG --version ) < /dev/null > /dev/null 2>&1; then
the parentheses aren't part of the syntax of the if statement; they just specify command grouping. (It took me a moment to remember that myself; in csh/tcsh, parentheses are part of the syntax of an if statement.)
For example, this:
( echo one ; echo two ) | tr a-z A-Z
will produce this output:
ONE
TWO
In this case, since $PROG --version is a single command, the parentheses are unnecessary (unless $PROG expands to more than one command, but that's unlikely).
So the redirection doesn't apply to the if statement; it applies to $PROG --version. The purpose is to provide no input (as if reading from an empty file) to $PROG, and to discard anything it writes to stdout or stderr. If $PROG is a command that reads from stdin, even when invoked with --version, then without the input redirection it could hang waiting for keyboard input.
The script assumes that it's safe to invoke $PROG (whatever it may be) only if $PROG --version doesn't produce an error.
Note that you can apply redirection to an if statement:
if test_command ; then
something
else
something_else
fi < /dev/null > /dev/null 2>&1
This redirects input and output for test_command, something, and something_else.