File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
utbot-junit-contest/src/main/kotlin/org/utbot/contest/usvm Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import org.jacodb.api.ext.toType
11
11
import org.jacodb.approximation.Approximations
12
12
import org.jacodb.impl.features.InMemoryHierarchy
13
13
import org.objectweb.asm.Type
14
+ import org.usvm.PathSelectionStrategy
14
15
import org.usvm.UMachineOptions
15
16
import org.usvm.api.targets.JcTarget
16
17
import org.usvm.instrumentation.util.jcdbSignature
@@ -87,7 +88,8 @@ fun runUsvmGeneration(
87
88
machineOptions = UMachineOptions (
88
89
// TODO usvm-sbft: if we have less than CONTEST_TEST_EXECUTION_TIMEOUT time left, we should try execute
89
90
// with smaller timeout, but instrumentation currently doesn't allow to change timeout for individual runs
90
- timeout = generationTimeoutMillisWithoutCodegen.milliseconds - CONTEST_TEST_EXECUTION_TIMEOUT
91
+ timeout = generationTimeoutMillisWithoutCodegen.milliseconds - CONTEST_TEST_EXECUTION_TIMEOUT ,
92
+ pathSelectionStrategies = listOf (PathSelectionStrategy .CLOSEST_TO_UNCOVERED_RANDOM ),
91
93
)
92
94
) {
93
95
// TODO usvm-sbft: we may want to tune these JcSettings for contest
You can’t perform that action at this time.
0 commit comments