[][src]Function oars::oa::verify

pub fn verify<T: Integer>(oa: &OA<T>) -> OarsResult<bool>

Given some orthogonal array struct, verify that the points are a valid orthogonal array as described by the parameters.

An orthogonal array is defined by four key parameters, and this function attempts to see if points matches up with the other parameters. This means that for any (and every) selection of $t$ columns, every possible combination of $t$-tuples must be present in that submatrix. You can easily map the combinations in a unique way using base $s$ where $s$ is the number of factors in the array (assuming it is a symmetrical array).