// IntRealSolutionType.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.Int;
import jmetal.encodings.variable.Real;
/**
* Class representing a solution type including two variables: an integer
* and a real.
*/
public class IntRealSolutionType extends SolutionType {
private final int intVariables_ ;
private final int realVariables_ ;
/**
* Constructor
* @param problem Problem to solve
* @param intVariables Number of integer variables
* @param realVariables Number of real variables
*/
public IntRealSolutionType(Problem problem, int intVariables, int realVariables) {
super(problem) ;
intVariables_ = intVariables ;
realVariables_ = realVariables ;
} // Constructor
/**
* Creates the variables of the solution
* @throws ClassNotFoundException
*/
public Variable[] createVariables() throws ClassNotFoundException {
Variable [] variables = new Variable[problem_.getNumberOfVariables()];
for (int var = 0; var < intVariables_; var++)
variables[var] = new Int((int)problem_.getLowerLimit(var), (int)problem_.getUpperLimit(var));
for (int var = intVariables_; var < (intVariables_ + realVariables_); var++)
variables[var] = new Real(problem_.getLowerLimit(var), problem_.getUpperLimit(var));
return variables ;
} // createVariables
} // IntRealSolutionType