Skip to content

Commit

Permalink
ih progress
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Jan 30, 2024
1 parent addb406 commit 4f98c5a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Util/FisherYates/Model.dfy
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ module FisherYates.Model {
requires 0 <= j < |s|
ensures multiset(s) == multiset(t)
ensures |s| == |t|
ensures i == j ==> s == t
ensures t[..i] == s[..i]
ensures i < j ==> t[i+1..j] == s[i+1..j]
ensures t[j+1..] == s[j+1..]
{
if i == j then
s
Expand Down

0 comments on commit 4f98c5a

Please sign in to comment.