Skip to content

Commit

Permalink
Update Source/DafnyTestGeneration/PathBasedModifier.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron Tomb <aarontomb@gmail.com>
  • Loading branch information
Dargones and atomb authored Aug 9, 2023
1 parent 5f7992c commit 41edfff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DafnyTestGeneration/PathBasedModifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected override IEnumerable<ProgramModification> GetModifications(Program p)
bool newPathsFound = true;
// Consider paths of increasing length, pruning out infeasible sub-paths in the process:
while (newPathsFound) {
List<Path> pathsToConsider = new(); // paths without nown unfeasible subpaths
List<Path> pathsToConsider = new(); // paths without known unfeasible subpaths
var totalPaths = 0;
foreach (var path in GeneratePaths(implementation, pathLength - PathLengthStep, pathLength)) {
totalPaths++;
Expand Down

0 comments on commit 41edfff

Please sign in to comment.