Skip to content

Commit

Permalink
Reformat file
Browse files Browse the repository at this point in the history
  • Loading branch information
mondokm committed Aug 9, 2024
1 parent 6eb1e4a commit 9d62408
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ class XstsCliPetrinetMdd : XstsCliBaseCommand(
private val ordering: File? by option(help = "Path of the input variable ordering").file(
mustExist = true, canBeDir = false, mustBeReadable = true
)
private val id: String by option(help = "ID of the input model. Used for symbolic output").default("")
private val iterationStrategy: MddChecker.IterationStrategy by option(
help = "The state space generation algorithm to use"
).enum<MddChecker.IterationStrategy>().default(MddChecker.IterationStrategy.GSAT)
private val dependencyOutput by PetrinetDependencyOutputOptions()
private val id: String by option(help = "ID of the input model. Used for symbolic output").default("")

private fun loadOrdering(petriNet: PetriNet): List<Place> =
if (ordering == null) petriNet.places.sortedWith { p1: Place, p2: Place ->
Expand Down

0 comments on commit 9d62408

Please sign in to comment.