Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tochilinak committed May 23, 2024
1 parent 008425c commit f30709f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package org.usvm.python.ps

enum class PyPathSelectorType {
BaselinePriorityDfs, // passes tests
BaselineWeightedDfs, // passes tests
BaselinePriorityNumberOfVirtualDfs, // passes tests
BaselineWeightedNumberOfVirtualRandomTree, // passes tests
BaselinePriorityNumberOfInstructionsDfs, // passes tests
BaselinePriorityNumberOfInstructionsRandomTree, // passes tests
BaselinePriorityPlusTypeRatingByHintsDfs, // passes tests
DelayedForkByInstructionWeightedDfs, // passes tests
DelayedForkByInstructionWeightedRandomTree, // passes tests
DelayedForkByInstructionPriorityNumberOfVirtualDfs, // passes tests
DelayedForkByInstructionWeightedNumberOfVirtualRandomTree, // passes tests
DelayedForkByInstructionPriorityNumberOfInstructionsDfs, // passes tests
DelayedForkByInstructionPriorityNumberOfInstructionsRandomTree, // passes tests
DelayedForkByInstructionPriorityNumberOfInstructionsRandomTreePlusTypeRating, // passes tests
BaselinePriorityDfs, // passes tests
BaselineWeightedDfs, // passes tests
BaselinePriorityNumberOfVirtualDfs, // passes tests
BaselineWeightedNumberOfVirtualRandomTree, // passes tests
BaselinePriorityNumberOfInstructionsDfs, // passes tests
BaselinePriorityNumberOfInstructionsRandomTree, // passes tests
BaselinePriorityPlusTypeRatingByHintsDfs, // passes tests
DelayedForkByInstructionWeightedDfs, // passes tests
DelayedForkByInstructionWeightedRandomTree, // passes tests
DelayedForkByInstructionPriorityNumberOfVirtualDfs, // passes tests
DelayedForkByInstructionWeightedNumberOfVirtualRandomTree, // passes tests
DelayedForkByInstructionPriorityNumberOfInstructionsDfs, // passes tests
DelayedForkByInstructionPriorityNumberOfInstructionsRandomTree, // passes tests
DelayedForkByInstructionPriorityNumberOfInstructionsRandomTreePlusTypeRating, // passes tests
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class PyMachine(
private val program: PyProgram,
private val typeSystem: PythonTypeSystem,
private val pathSelectorType: PyPathSelectorType = PyPathSelectorType.DelayedForkByInstructionPriorityNumberOfInstructionsRandomTreePlusTypeRating,
private val printErrorMsg: Boolean = false
private val printErrorMsg: Boolean = false,
) : UMachine<PyState>() {
private val ctx = PyContext(typeSystem)

Expand Down

0 comments on commit f30709f

Please sign in to comment.