Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //loop invariant
  2. for (int j = 0; j < x - 1; j++){
  3. for (int k = 0; k < column; k++){
  4. assert comp.compare(people[j][k], people[j][k + 1]) <= 0;
  5. assert comp.compare(people[j][k], people[j + 1][k]) <= 0;
  6. }
  7. }
  8. //loop invariant
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement