Skip to content

Commit

Permalink
Fix sortedness spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Drodt committed Jun 15, 2024
1 parent 226a2ce commit aac550f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArrayList/src/ArrayList.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private int binSearch(int v) {

/*@ public normal_behaviour
@ ensures \dl_seqPerm(\old(seq), seq);
@ ensures (\forall int x,y; 0<=x<y<seq.length-1; (\bigint)seq[x] <= (\bigint)seq[y]);
@ ensures (\forall int x,y; 0<=x<y<seq.length; (\bigint)seq[x] <= (\bigint)seq[y]);
@ assignable footprint;
@*/
public void sort() {
Expand Down
Empty file modified startkey.sh
100644 → 100755
Empty file.

0 comments on commit aac550f

Please sign in to comment.