src/jvm/main/org/jetbrains/kotlinx/lincheck/strategy/managed/modelchecking/ModelCheckingStrategyConfiguration.kt [41:61]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun createTestConfigurations(testClass: Class<*>): ModelCheckingCTestConfiguration { return ModelCheckingCTestConfiguration( testClass = testClass, iterations = iterations, threads = threads, actorsPerThread = actorsPerThread, actorsBefore = actorsBefore, actorsAfter = actorsAfter, generatorClass = executionGenerator, verifierClass = verifier, checkObstructionFreedom = checkObstructionFreedom, hangingDetectionThreshold = hangingDetectionThreshold, invocationsPerIteration = invocationsPerIteration, guarantees = guarantees, minimizeFailedScenario = minimizeFailedScenario, sequentialSpecification = chooseSequentialSpecification(sequentialSpecification, testClass), timeoutMs = timeoutMs, customScenarios = customScenarios, stdLibAnalysisEnabled = stdLibAnalysisEnabled, ) } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/jvm/main/org/jetbrains/lincheck/datastructures/ModelCheckingOptions.kt [33:53]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun createTestConfigurations(testClass: Class<*>): ModelCheckingCTestConfiguration { return ModelCheckingCTestConfiguration( testClass = testClass, iterations = iterations, threads = threads, actorsPerThread = actorsPerThread, actorsBefore = actorsBefore, actorsAfter = actorsAfter, generatorClass = executionGenerator, verifierClass = verifier, checkObstructionFreedom = checkObstructionFreedom, hangingDetectionThreshold = hangingDetectionThreshold, invocationsPerIteration = invocationsPerIteration, guarantees = guarantees, minimizeFailedScenario = minimizeFailedScenario, sequentialSpecification = chooseSequentialSpecification(sequentialSpecification, testClass), timeoutMs = timeoutMs, customScenarios = customScenarios, stdLibAnalysisEnabled = stdLibAnalysisEnabled, ) } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -