Sto cercando di risolvere il seguente problema lineare utilizzando il risolutore Simplex da apache-commons: org.apache.commons.math3.optim.linear.SimplexSolver
.Apache common SimplexSolver ObjectiveFunzione per massimizzare la somma di valori in una matrice
n
è il numero di righe
m
è il numero di colonne
L
è un limite globale per il valore della somma di ogni riga
Questo è quello che ho finora:
List<LinearConstraint> constraints = new ArrayList<>();
double[][] A = calculateAValues();
// m = count of columns
// constraint 1: the sum of values in all column must be <= 1
for(int i = 0; i < m; i++) {
double[] v = new double[n];
for(int j=0; j < n; j++) {
v[j] = 1;
}
constraints.add(new LinearConstraint(v, Relationship.LEQ, 1));
}
// n = count of rows
// constraint 2: sum of a_i,j in all row must be <= L (Limit)
for(int i = 0; i < n; i++) {
double[] v = new double[m];
for(int j=0; j < m; j++) {
v[j] = A[i][j];
}
constraints.add(new LinearConstraint(v, Relationship.LEQ, L));
}
double[] objectiveCoefficients = new double[n * m];
for(int i = 0; i < n * m; ++i) {
objectiveCoefficients[i] = 1;
}
LinearObjectiveFunction objective = new LinearObjectiveFunction(objectiveCoefficients, 0);
LinearConstraintSet constraintSet = new LinearConstraintSet(constraints);
SimplexSolver solver = new SimplexSolver();
PointValuePair solution = solver.optimize(objective, constraintSet, GoalType.MAXIMIZE);
return solution.getValue();
Ho difficoltà a ottenere correttamente la funzione obiettivo, e potrebbe anche mancare qualche altra cosa. Ogni mio tentativo finora ha portato a UnboundedSolutionException
.