Skip to content

Commit

Permalink
renamed PrunedDeclarations to DeclarationsAfterPruning
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiomadge committed Oct 6, 2024
1 parent 9141641 commit 94cfc09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/VCGeneration/Split.cs
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ public VerificationRunResult ReadOutcome(int iteration, Checker checker, Verifie
CoveredElements: CoveredElements,
ResourceCount: resourceCount,
SolverUsed: (Options as SMTLibSolverOptions)?.Solver,
PrunedDeclarations: PrunedDeclarations
DeclarationsAfterPruning: PrunedDeclarations
);
callback.OnVCResult(result);

Expand Down
2 changes: 1 addition & 1 deletion Source/VCGeneration/VerificationRunResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public record VerificationRunResult
IEnumerable<TrackedNodeComponent> CoveredElements,
int ResourceCount,
SolverKind? SolverUsed,
IReadOnlyList<Declaration> PrunedDeclarations
IReadOnlyList<Declaration> DeclarationsAfterPruning
) {
public void ComputePerAssertOutcomes(out Dictionary<AssertCmd, SolverOutcome> perAssertOutcome,
out Dictionary<AssertCmd, Counterexample> perAssertCounterExamples) {
Expand Down

0 comments on commit 94cfc09

Please sign in to comment.