BooleanToken result = array1.getElement(i).isCloseTo(
array2.getElement(i), epsilon);
// If the tokens are not close and array1[i] and is not nil, then
// the arrays really aren't close.
if (result.booleanValue() == false) {
if (array1.getElement(i).isNil()
&& array2.getElement(i).isNil()) {
// They are not close, but both are nil, so for
// our purposes, the are close.
} else {