Skip to content
Snippets Groups Projects
Commit afdf794a authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

clean up

parent 940cf029
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!78Resolve "Implement Quarkus/Kotlin protype"
This commit is part of merge request !78. Comments created here will be created in the context of that merge request.
package theodolite.strategies.restriction
abstract class CompositeRestriction(val childRestriction: Restriction): Restriction {
}
\ No newline at end of file
package theodolite.strategies.restriction
import theodolite.util.Results
import theodolite.strategies.searchstrategy.RestrictionStrategy
import theodolite.util.LoadDimension
import theodolite.util.Resource
......
package theodolite.strategies.restriction
import theodolite.strategies.searchstrategy.SearchStrategy
abstract class PrimitiveRestriction(val searchStrategy: SearchStrategy): Restriction {
}
\ No newline at end of file
package theodolite.strategies.restriction
interface Restriction {
fun restrict(loads: List<Int>, resources: List<Int>): List<Int>;
}
\ No newline at end of file
package theodolite.strategies.searchstrategy
package theodolite.strategies.restriction
import theodolite.util.Results
import theodolite.util.LoadDimension
......
package theodolite.strategies.searchstrategy
import theodolite.execution.BenchmarkExecutor
import theodolite.strategies.restriction.RestrictionStrategy
import theodolite.util.LoadDimension
import theodolite.util.Resource
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment