Skip to content

Commit

Permalink
dafny version conflict?
Browse files Browse the repository at this point in the history
  • Loading branch information
gt22 committed Dec 16, 2024
1 parent 9f59960 commit 9894ba7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 149-sorted_list_sum.dfy
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ method sorted_list_sum(list: seq<string>) returns (sorted: seq<string>)
{
if |init[i]| % 2 == 0 {
sorted := sorted + [init[i]];
assert multiset(sorted) <= multiset(init[0..i]);
assert multiset(sorted) <= multiset(init[0..i + 1]); // assert-line
} else {
assert init[0..i + 1] == init[0..i] + [init[i]]; // assert-line
Expand Down

0 comments on commit 9894ba7

Please sign in to comment.