feat: add CandidateWindow class to encapsulate interval and score

This commit is contained in:
2025-12-05 23:28:04 +01:00
parent 57621315f5
commit 8217c7b5e4

View File

@@ -0,0 +1,11 @@
package de.th_luebeck.ws25;
public class CandidateWindow {
Interval interval;
double score;
CandidateWindow(Interval interval, double score) {
this.interval = interval;
this.score = score;
}
}