Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardDrummer committed Aug 8, 2024
1 parent bb5a3a6 commit 43ca15e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/VCGeneration/SplitAndVerifyWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ private async Task StartCheck(int iteration, Split split, Checker checker, Cance
var splitIdxStr = options.RandomizeVcIterations > 1 ? $"{splitNum} (iteration {iteration})" : $"{splitNum}";
await run.OutputWriter.WriteLineAsync(string.Format(CultureInfo.InvariantCulture,
" checking split {1}/{2}{3}, {4:0.00}%, {0} ...",
split.Stats, splitIdxStr, total,
split is ManualSplit manualSplit ? $" (line {manualSplit.Token.line})" : "",
100 * provenCost / (provenCost + remainingCost)));
split.Stats, splitIdxStr, total,

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / LeanAuto CI

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / LeanAuto CI

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / LeanAuto CI

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / LeanAuto CI

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / LeanAuto CI

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / LeanAuto CI

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=True)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=True)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=True)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=True)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=True)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=True)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=False)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=False)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=False)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=False)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=False)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Debug, batch_mode=False)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=True)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=True)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=True)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=True)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=True)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=True)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=False)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=False)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=False)

; expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=False)

Invalid expression term '}'

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=False)

) expected

Check failure on line 145 in Source/VCGeneration/SplitAndVerifyWorker.cs

View workflow job for this annotation

GitHub Actions / Boogie CI (Release, batch_mode=False)

; expected
// split is ManualSplit manualSplit ? $" (line {manualSplit.Token.line})" : "",
// 100 * provenCost / (provenCost + remainingCost)));
}

callback.OnProgress?.Invoke("VCprove", split.SplitIndex, total,
Expand Down

0 comments on commit 43ca15e

Please sign in to comment.