File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/kotlin/org/utbot/contest/usvm/jc Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ plugins {
4
4
apply plugin : ' jacoco'
5
5
6
6
repositories {
7
+ mavenLocal()
7
8
mavenCentral()
8
9
maven { url ' https://jitpack.io' }
9
10
maven {
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import org.usvm.UMachineOptions
11
11
import org.usvm.instrumentation.executor.UTestConcreteExecutor
12
12
import org.usvm.instrumentation.instrumentation.JcRuntimeTraceInstrumenterFactory
13
13
import org.usvm.machine.JcMachine
14
+ import org.usvm.util.classpathWithApproximations
14
15
import java.io.File
15
16
import kotlin.time.Duration.Companion.seconds
16
17
@@ -30,8 +31,7 @@ class JcContainer private constructor(
30
31
init {
31
32
val (db, cp) = runBlocking {
32
33
val db = jacodb(builder)
33
- // TODO usvm-sbft: use classpathWithApproximations here when approximation decoders are finished
34
- val cp = db.classpath(classpath, listOf (UnknownClasses ))
34
+ val cp = db.classpathWithApproximations(classpath, listOf (UnknownClasses ))
35
35
db to cp
36
36
}
37
37
this .db = db
You can’t perform that action at this time.
0 commit comments