feat: add CandidateWindow class to encapsulate interval and score
This commit is contained in:
11
src/main/java/de/th_luebeck/ws25/CandidateWindow.java
Normal file
11
src/main/java/de/th_luebeck/ws25/CandidateWindow.java
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user