// ArrayRealSolutionType.java
//
// Author:
// Antonio J. Nebro <antonio@lcc.uma.es>
// Juan J. Durillo <durillo@lcc.uma.es>
//
// Copyright (c) 2011 Antonio J. Nebro, Juan J. Durillo
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package jmetal.encodings.solutionType;
import jmetal.core.Problem;
import jmetal.core.SolutionType;
import jmetal.core.Variable;
import jmetal.encodings.variable.ArrayReal;
/**
* Class representing the solution type of solutions composed of an ArrayReal
* encodings.variable
*/
public class ArrayRealSolutionType extends SolutionType {
/**
* Constructor
* @param problem Problem to solve
*/
public ArrayRealSolutionType(Problem problem) {
super(problem) ;
}
/**
* Creates the variables of the solution
*/
public Variable[] createVariables() {
Variable [] variables = new Variable[1];
variables[0] = new ArrayReal(problem_.getNumberOfVariables(), problem_);
return variables ;
} // createVariables
/**
* Copy the variables
* @param vars Variables
* @return An array of variables
*/
public Variable[] copyVariables(Variable[] vars) {
Variable[] variables ;
variables = new Variable[1];
variables[0] = vars[0].deepCopy();
return variables ;
} // copyVariables
} // ArrayRealSolutionType