Skip to content

Commit

Permalink
only using OcChecker when datarace is used
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 11, 2024
1 parent b772fc9 commit 2fb0d77
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,9 @@ fun complexPortfolio25(
var inProcessStm = getStm(mainTrait, true)
var notInProcessStm = getStm(mainTrait, false)

if (parseContext.multiThreading) {
if (
parseContext.multiThreading && baseConfig.inputConfig.property == ErrorDetection.ERROR_LOCATION
) {
val inProcOc = ConfigNode("OC", ocConfig(true), checker)
val notInProcOc = ConfigNode("OC", ocConfig(false), checker)
val inProcessCegar = HierarchicalNode("InProcessCegar", inProcessStm)
Expand Down

0 comments on commit 2fb0d77

Please sign in to comment.