Skip to content

Commit

Permalink
Fixed safe default
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 23, 2023
1 parent 18796ab commit 5eeb1ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ class XcfaCli(private val args: Array<String>) {
stopwatch.reset().start()

val safetyResult: SafetyResult<*, *> =
if (xcfa.procedures.all { it.errorLoc.isEmpty && explicitProperty != ErrorDetection.NO_ERROR }) {
if (xcfa.procedures.all { it.errorLoc.isEmpty && explicitProperty == ErrorDetection.ERROR_LOCATION }) {
registerAllSolverManagers(solverHome, logger)
SafetyResult.safe(ARG.create { _, _ -> false })
} else if (backend == Backend.CEGAR) {
Expand Down

0 comments on commit 5eeb1ce

Please sign in to comment.