Skip to content

Commit

Permalink
Update to STARS framework version v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tillschallau committed Nov 17, 2023
1 parent ed376e4 commit 57ad197
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {
mavenLocal()
}

var starsVersion = "0.2"
var starsVersion = "0.2.1"

dependencies {
testImplementation(kotlin("test"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ fun main() {

val simulationRunsWrappers = getSimulationRuns()
val segments =
loadSegments(simulationRunsWrappers, USE_EVERY_VEHICLE_AS_EGO, MIN_SEGMENT_TICK_COUNT)
loadSegments(
simulationRunsWrappers, USE_EVERY_VEHICLE_AS_EGO, MIN_SEGMENT_TICK_COUNT, SORT_BY_SEED)

val tscEvaluation =
TSCEvaluation(tsc = tsc, segments = segments, projectionIgnoreList = PROJECTION_IGNORE_LIST)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ val SIMULATION_RUN_FOLDER = ".\\stars-reproduction-source\\stars-experiments-dat
val PROJECTION_IGNORE_LIST = listOf<String>()
val FILTER_REGEX = ".*"
val STATIC_FILTER_REGEX = ".*"
val SORT_BY_SEED = true

0 comments on commit 57ad197

Please sign in to comment.