Skip to content
Snippets Groups Projects
Commit bb2a5fef authored by Tibo's avatar Tibo
Browse files

Fix unused code

parent a127d8b5
No related branches found
No related tags found
No related merge requests found
Pipeline #1363 failed
...@@ -21,8 +21,6 @@ public class SolutionAUC extends AbstractSolution { ...@@ -21,8 +21,6 @@ public class SolutionAUC extends AbstractSolution {
final List<double[]> data, final List<double[]> data,
final double[] expected) { final double[] expected) {
this.fitness_score = 0; this.fitness_score = 0;
double[] aggregated_values = new double[data.size()];
WOWA wowa = new WOWA(this.weights_w, this.weights_p);
this.fitness_score = -(Utils.computeAUC(this, data, expected)); this.fitness_score = -(Utils.computeAUC(this, data, expected));
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment