44 int numPoints = Integer.parseInt(res.get(1).split(
" //")[0]);
45 int dimension = Integer.parseInt(res.get(2).split(
" //")[0]);
46 int[] genVec =
new int[dimension];
47 for (
int coord = 0; coord < dimension; ++coord) {
48 genVec[coord] = Integer.parseInt(res.get(5 + coord).split(
" //")[0]);
50 this.merit = Double.parseDouble(res.get(5 + dimension).split(
" //")[0]);
51 this.time = Double.parseDouble(res.get(6 + dimension).split(
" //")[0]);
52 this.successful =
true;