From 8217c7b5e4b0e3d0d7a8c3944b0da14ef3cc9d7a Mon Sep 17 00:00:00 2001 From: WOBBLEFANG THE THIRD Date: Fri, 5 Dec 2025 23:28:04 +0100 Subject: [PATCH] feat: add CandidateWindow class to encapsulate interval and score --- src/main/java/de/th_luebeck/ws25/CandidateWindow.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/de/th_luebeck/ws25/CandidateWindow.java diff --git a/src/main/java/de/th_luebeck/ws25/CandidateWindow.java b/src/main/java/de/th_luebeck/ws25/CandidateWindow.java new file mode 100644 index 0000000..de95522 --- /dev/null +++ b/src/main/java/de/th_luebeck/ws25/CandidateWindow.java @@ -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; + } +}