throw new MissingParameterException("search");
}
if (search.equals("exhaustive") || search.equals("band")) {
MatrixFactory matrixFactory;
if (search.equals("exhaustive")) {
matrixFactory = new FullMatrixFactory();
} else if (search.equals("band")) {
int radius = createInt(commandLine, "radius",
BandMatrixFactory.DEFAULT_BAND_RADIUS);
matrixFactory = new BandMatrixFactory(radius);
} else {