diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/CompositeRestriction.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/CompositeRestriction.kt
deleted file mode 100644
index 6f61dc2ad0c7210001007510b999523c137ee501..0000000000000000000000000000000000000000
--- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/CompositeRestriction.kt
+++ /dev/null
@@ -1,4 +0,0 @@
-package theodolite.strategies.restriction
-
-abstract class CompositeRestriction(val childRestriction: Restriction): Restriction {
-}
\ No newline at end of file
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt
index fc5b6d5385a3fd97fb224219ee5ec0844b44d414..73792f3ce63d3808df657bc155d7ca6420723fa2 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt
@@ -1,7 +1,6 @@
 package theodolite.strategies.restriction
 
 import theodolite.util.Results
-import theodolite.strategies.searchstrategy.RestrictionStrategy
 import theodolite.util.LoadDimension
 import theodolite.util.Resource
 
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/PrimitiveRestriction.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/PrimitiveRestriction.kt
deleted file mode 100644
index 0e1873ec232316b0e535bcbeba47a3158dc54265..0000000000000000000000000000000000000000
--- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/PrimitiveRestriction.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package theodolite.strategies.restriction
-
-import theodolite.strategies.searchstrategy.SearchStrategy
-
-abstract class PrimitiveRestriction(val searchStrategy: SearchStrategy): Restriction {
-
-}
\ No newline at end of file
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/Restriction.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/Restriction.kt
deleted file mode 100644
index 4dc5ca5246b6f75852e15b1a8ab25265961a983b..0000000000000000000000000000000000000000
--- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/Restriction.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package theodolite.strategies.restriction
-
-interface Restriction {
-    fun restrict(loads: List<Int>, resources: List<Int>): List<Int>;
-}
\ No newline at end of file
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/RestrictionStrategy.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt
similarity index 86%
rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/RestrictionStrategy.kt
rename to theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt
index 7a6e43ce008603101d20685d195523ca77beef71..bf04156283b7291bd84180ed8a3f5715f68a1503 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/RestrictionStrategy.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt
@@ -1,4 +1,4 @@
-package theodolite.strategies.searchstrategy
+package theodolite.strategies.restriction
 
 import theodolite.util.Results
 import theodolite.util.LoadDimension
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt
index 79c34e3260694fa93ef796e9ee1f3f09665d5e94..e69ee0bad1c2df5f8677fd7e6743cf69910cab8d 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt
@@ -1,6 +1,7 @@
 package theodolite.strategies.searchstrategy
 
 import theodolite.execution.BenchmarkExecutor
+import theodolite.strategies.restriction.RestrictionStrategy
 import theodolite.util.LoadDimension
 import theodolite.util.Resource