예제 #1
0
 // Is this command "call assert_proc()"
 public bool isAssertCmd(Cmd cmd)
 {
     return(BoogieUtil.checkIsCall(assertNotReachableName, cmd));
 }
예제 #2
0
 // Is this command "call getThreadID()"
 public bool isGetThreadID(Cmd cmd)
 {
     return(BoogieUtil.checkIsCall(getThreadIDName, cmd));
 }
예제 #3
0
 // Is this command "call atomic_end()"
 public bool isAtomicEnd(Cmd cmd)
 {
     return(BoogieUtil.checkIsCall(atomicEndProcName, cmd));
 }