Skip to content

Commit a5c7044

Browse files
committed
uncommit
1 parent 07dc2c9 commit a5c7044

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

utbot-framework-api/src/main/kotlin/org/utbot/framework/UtSettings.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ object UtSettings {
221221
*
222222
* True by default.
223223
*/
224-
var useConcreteExecution by getBooleanProperty(true)
224+
var useConcreteExecution by getBooleanProperty(false)
225225

226226
/**
227227
* Enable check of full coverage for methods with code generations tests.
@@ -333,7 +333,7 @@ object UtSettings {
333333
*
334334
* False by default.
335335
*/
336-
var enableUnsatCoreCalculationForHardConstraints by getBooleanProperty(false)
336+
var enableUnsatCoreCalculationForHardConstraints by getBooleanProperty(true)
337337

338338
/**
339339
* Enable it to process states with unknown solver status

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/tree/CgFieldStateManager.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import org.utbot.framework.codegen.model.tree.CgGetJavaClass
1717
import org.utbot.framework.codegen.model.tree.CgValue
1818
import org.utbot.framework.codegen.model.tree.CgVariable
1919
import org.utbot.framework.codegen.model.util.at
20+
import org.utbot.framework.codegen.model.util.get
2021
import org.utbot.framework.codegen.model.util.isAccessibleFrom
2122
import org.utbot.framework.codegen.model.util.stringLiteral
2223
import org.utbot.framework.fields.ArrayElementAccess

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/tree/CgMethodConstructor.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ import org.utbot.framework.codegen.model.tree.convertDocToCg
6868
import org.utbot.framework.codegen.model.tree.toStatement
6969
import org.utbot.framework.codegen.model.util.canBeSetIn
7070
import org.utbot.framework.codegen.model.util.equalTo
71+
import org.utbot.framework.codegen.model.util.get
7172
import org.utbot.framework.codegen.model.util.inc
7273
import org.utbot.framework.codegen.model.util.isAccessibleFrom
7374
import org.utbot.framework.codegen.model.util.isInaccessible

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/tree/CgVariableConstructor.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import org.utbot.framework.codegen.model.tree.CgValue
2424
import org.utbot.framework.codegen.model.tree.CgVariable
2525
import org.utbot.framework.codegen.model.util.at
2626
import org.utbot.framework.codegen.model.util.canBeSetIn
27+
import org.utbot.framework.codegen.model.util.get
2728
import org.utbot.framework.codegen.model.util.inc
2829
import org.utbot.framework.codegen.model.util.isAccessibleFrom
2930
import org.utbot.framework.codegen.model.util.lessThan

0 commit comments

Comments
 (0)