1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/**************************************************************************/
/* */
/* The Why platform for program certification */
/* Copyright (C) 2002-2008 */
/* Romain BARDOU */
/* Jean-Franois COUCHOT */
/* Mehdi DOGGUY */
/* Jean-Christophe FILLITRE */
/* Thierry HUBERT */
/* Claude MARCH */
/* Yannick MOY */
/* Christine PAULIN */
/* Yann RGIS-GIANAS */
/* Nicolas ROUSSET */
/* Xavier URBAIN */
/* */
/* This software is free software; you can redistribute it and/or */
/* modify it under the terms of the GNU General Public */
/* License version 2, as published by the Free Software Foundation. */
/* */
/* This software is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */
/* */
/* See the GNU General Public License version 2 for more details */
/* (enclosed in the file GPL). */
/* */
/**************************************************************************/
/* Dijkstra's dutch flag */
//@+ CheckArithOverflow = no
/*@ predicate is_color(integer c) {
@ c == FlagStatic.BLUE || c == FlagStatic.WHITE || c == FlagStatic.RED
@ }
@*/
/*@ predicate is_color_array{L}(int t[]) {
@ t != null &&
@ \forall integer i; 0 <= i < t.length ==> is_color(t[i])
@ }
@*/
/*@ predicate is_monochrome{L}(int t[],integer i, integer j, int c) {
@ \forall integer k; i <= k < j ==> t[k] == c
@ }
@*/
class FlagStatic {
public static final int BLUE = 1, WHITE = 2, RED = 3;
/*@ requires t != null && 0 <= i <= j <= t.length ;
@ behavior decides_monochromatic:
@ ensures \result <==> is_monochrome(t,i,j,c);
@*/
public static boolean isMonochrome(int t[], int i, int j, int c) {
/*@ loop_invariant i <= k &&
@ (\forall integer l; i <= l < k ==> t[l]==c);
@ decreases j - k;
@*/
for (int k = i; k < j; k++) if (t[k] != c) return false;
return true;
}
/*@ requires 0 <= i < t.length && 0 <= j < t.length;
@ behavior i_j_swapped:
@ assigns t[i],t[j];
@ ensures t[i] == \old(t[j]) && t[j] == \old(t[i]);
@*/
private static void swap(int t[], int i, int j) {
int z = t[i];
t[i] = t[j];
t[j] = z;
}
/*@ requires
@ is_color_array(t);
@ behavior sorts:
@ assigns t[..];
@ ensures
@ (\exists int b r; is_monochrome(t,0,b,BLUE) &&
@ is_monochrome(t,b,r,WHITE) &&
@ is_monochrome(t,r,t.length,RED));
@*/
public static void flag(int t[]) {
int b = 0;
int i = 0;
int r = t.length;
/*@ loop_invariant
@ is_color_array(t) &&
@ 0 <= b <= i <= r <= t.length &&
@ is_monochrome(t,0,b,BLUE) &&
@ is_monochrome(t,b,i,WHITE) &&
@ is_monochrome(t,r,t.length,RED);
@ decreases r - i;
@*/
while (i < r) {
switch (t[i]) {
case BLUE:
swap(t,b++, i++);
break;
case WHITE:
i++;
break;
case RED:
swap(t,--r, i);
break;
}
}
}
}
/*
Local Variables:
compile-command: "make FlagStatic"
End:
*/
|