final Map<String, String> params = section.parseParams();
cols = EncogFileSection.parseInt(params,PersistConst.COLS);
rows = EncogFileSection.parseInt(params,PersistConst.ROWS);
} else if (section.getSectionName().equals("BasicUniverse")
&& section.getSubSectionName().equals("UNIVERSE-CELLS")) {
final Map<String, String> params = section.parseParams();
min = EncogFileSection.parseDouble(params,PersistConst.MIN);
max = EncogFileSection.parseDouble(params,PersistConst.MAX);
elementCount = EncogFileSection.parseInt(params,BasicUniverse.ELEMENT_COUNT);
size = EncogFileSection.parseInt(params,PersistConst.SIZE);