Skip to content

Commit

Permalink
trace generation checker is now a Checker
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamZsofi committed Sep 29, 2024
1 parent a49a7c8 commit 23301f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TraceGenerationChecker<S : State, A : Action, P : Prec?>(
private val logger: Logger,
private val abstractor: Abstractor<S, A, P>,
private val getFullTraces : Boolean,
) : SafetyChecker<TraceSetSummary<S, A>, EmptyCex, P> { // TODO refactor templates?
) : Checker<TraceSetSummary<S, A>, P> {
private var traces: List<Trace<S, A>> = ArrayList()

companion object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package hu.bme.mit.theta.xsts.cli

import com.github.ajalt.clikt.parameters.options.default
import com.github.ajalt.clikt.parameters.options.option
import com.github.ajalt.clikt.parameters.types.file
import com.google.common.base.Stopwatch
Expand Down

0 comments on commit 23301f7

Please sign in to comment.