From 06d992b0e9d29c72768e60e7fd79f4ea5042c67b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Fuch=C3=9F?= Date: Fri, 29 Nov 2024 20:38:33 +0100 Subject: [PATCH] Move packages for similarity --- .../tlr/textextraction/informants/MappingCombinerInformant.java | 2 +- .../ardoco/tlr/textextraction/agents/MappingCombinerTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java b/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java index dc9c7e2..73c5afb 100644 --- a/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java +++ b/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java @@ -11,10 +11,10 @@ import edu.kit.kastel.mcse.ardoco.core.api.stage.textextraction.PhraseMapping; import edu.kit.kastel.mcse.ardoco.core.api.stage.textextraction.TextState; import edu.kit.kastel.mcse.ardoco.core.api.text.Phrase; +import edu.kit.kastel.mcse.ardoco.core.common.similarity.PhraseMappingAggregatorStrategy; import edu.kit.kastel.mcse.ardoco.core.common.tuple.Pair; import edu.kit.kastel.mcse.ardoco.core.common.util.Comparators; import edu.kit.kastel.mcse.ardoco.core.common.util.DataRepositoryHelper; -import edu.kit.kastel.mcse.ardoco.core.common.util.PhraseMappingAggregatorStrategy; import edu.kit.kastel.mcse.ardoco.core.configuration.Configurable; import edu.kit.kastel.mcse.ardoco.core.data.DataRepository; import edu.kit.kastel.mcse.ardoco.core.pipeline.agent.Informant; diff --git a/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java b/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java index e25b116..4a3b679 100644 --- a/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java +++ b/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java @@ -18,7 +18,7 @@ import edu.kit.kastel.mcse.ardoco.core.api.text.Phrase; import edu.kit.kastel.mcse.ardoco.core.api.text.PhraseType; import edu.kit.kastel.mcse.ardoco.core.api.text.Word; -import edu.kit.kastel.mcse.ardoco.core.common.util.PhraseMappingAggregatorStrategy; +import edu.kit.kastel.mcse.ardoco.core.common.similarity.PhraseMappingAggregatorStrategy; import edu.kit.kastel.mcse.ardoco.core.data.DataRepository; import edu.kit.kastel.mcse.ardoco.core.pipeline.agent.Claimant; import edu.kit.kastel.mcse.ardoco.tlr.text.providers.informants.corenlp.PhraseImpl;