1 20 36 import gov.nasa.jpf.jvm.Verify; 37 38 39 42 class Constants { 43 public static final boolean east = true; 44 public static final boolean west = false; 45 } 46 47 50 class Torch { 51 public static boolean side = Constants.east; 52 53 public String toString () { 54 if (side == Constants.east) { 55 return "east"; 56 } else { 57 return "west"; 58 } 59 } 60 } 61 62 65 class Bridge { 66 static Person[] onBridge = new Person[2]; 67 static int numOnBridge = 0; 68 69 public static boolean isFull () { 70 return numOnBridge != 0; 71 } 72 73 public static int Cross () { 74 int time = 0; 75 Torch.side = !Torch.side; 76 77 if (numOnBridge == 1) { 78 onBridge[0].side = Torch.side; 79 time = onBridge[0].time; 80 85 } else { 86 onBridge[0].side = Torch.side; 87 onBridge[1].side = Torch.side; 88 89 if (onBridge[0].time > onBridge[1].time) { 90 time = onBridge[0].time; 91 } else { 92 time = onBridge[1].time; 93 } 94 100 } 101 102 return time; 103 } 104 105 public static void clearBridge () { 106 if (numOnBridge == 0) { 107 return; 108 } else if (numOnBridge == 1) { 109 onBridge[0] = null; 110 numOnBridge = 0; 111 } else { 112 onBridge[0] = null; 113 onBridge[1] = null; 114 numOnBridge = 0; 115 } 116 } 117 118 public static void initBridge () { 119 onBridge[0] = null; 120 onBridge[1] = null; 121 numOnBridge = 0; 122 } 123 124 public static boolean tryToCross (Person th) { 125 if ((numOnBridge < 2) && (onBridge[0] != th) && (onBridge[1] != th)) { 126 onBridge[numOnBridge++] = th; 127 128 return true; 129 } else { 130 return false; 131 } 132 } 133 } 134 135 138 class Person { 139 int id; 141 public int time; 142 public boolean side; 143 144 public Person (int i, int t) { 145 time = t; 146 side = Constants.east; 147 id = i; 148 } 149 150 public void move () { 151 if (side == Torch.side) { 152 if (!Verify.randomBool()) { 153 Bridge.tryToCross(this); 154 } 155 } 156 } 157 158 public String toString () { 159 return Integer.toString(id); 160 } 161 } 162 163 166 public class Crossing { 167 public static native void setTotal (int time); 168 169 public static native int getTotal (); 171 172 public static void main (String [] args) { 173 Verify.beginAtomic(); 174 175 boolean isNative = false; 180 181 if (isNative) { 182 setTotal(30); } 184 185 int total = 0; 186 boolean finished = false; 187 Bridge.initBridge(); 188 189 Person p1 = new Person(1, 1); 190 Person p2 = new Person(2, 2); 191 Person p3 = new Person(3, 5); 192 Person p4 = new Person(4, 10); 193 Verify.endAtomic(); 194 195 while (!finished) { 196 Verify.beginAtomic(); 197 p1.move(); 198 p2.move(); 199 p3.move(); 200 p4.move(); 201 202 if (Bridge.isFull()) { 203 total += Bridge.Cross(); 204 205 if (isNative) { 206 Verify.ignoreIf(total > getTotal()); 207 } else { 208 Verify.ignoreIf(total > 17); } 210 211 Bridge.clearBridge(); 212 213 214 finished = !(p1.side || p2.side || p3.side || p4.side); 216 } 217 218 Verify.endAtomic(); 219 } 220 221 Verify.beginAtomic(); 222 223 if (isNative) { 224 if (total < getTotal()) { 225 System.out.println("new total " + total); 226 setTotal(total); 227 assert (total > getTotal()); 228 } 229 } else { 230 System.out.println("total time = " + total); 231 assert (total > 17); 232 } 233 234 Verify.endAtomic(); 235 } 236 237 static void printConfig (Person p1, Person p2, Person p3, Person p4, 238 int total) { 239 System.out.print( Integer.toString(total)); 240 System.out.print(" : "); 241 242 if (p1.side == Constants.east) { 243 System.out.print(" p1(" + p1.time + ")"); 244 } 245 246 if (p2.side == Constants.east) { 247 System.out.print(" p2(" + p2.time + ")"); 248 } 249 250 if (p3.side == Constants.east) { 251 System.out.print(" p3(" + p3.time + ")"); 252 } 253 254 if (p4.side == Constants.east) { 255 System.out.print(" p4(" + p4.time + ")"); 256 } 257 258 System.out.print(" -> "); 259 260 if (p1.side == Constants.west) { 261 System.out.print(" p1(" + p1.time + ")"); 262 } 263 264 if (p2.side == Constants.west) { 265 System.out.print(" p2(" + p2.time + ")"); 266 } 267 268 if (p3.side == Constants.west) { 269 System.out.print(" p3(" + p3.time + ")"); 270 } 271 272 if (p4.side == Constants.west) { 273 System.out.print(" p4(" + p4.time + ")"); 274 } 275 276 System.out.println(); 277 } 278 } 279
| Popular Tags
|