Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

Verify.java

00001 package gov.nasa.arc.ase.jpf.jvm;
00002 
00003 import java.util.Random;
00004 
00005 public class Verify {
00006   static public void assert(boolean cond) {
00007     if (!cond)
00008       throw new RuntimeException("assertion failed");
00009   }  
00010   static public void atLabel(int label) {
00011   }  
00012   static public void atLabel(String label) {
00013   }  
00014   static public void beginAtomic() {
00015   }  
00016   static public void beginSoftAtomic() {
00017   }  
00018   static public void dumpState() {
00019   }  
00020   static public void endAtomic() {
00021   }  
00022   static public void endSoftAtomic() {
00023   }  
00024   static public int random(int max) {
00025     return 0;
00026   }  
00027   static public boolean randomBool() {
00028     return false;
00029   }  
00030 }

Generated at Thu Feb 7 06:59:11 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001