package project; import java.util.*; import org.overture.codegen.runtime.*; import org.overture.codegen.vdm2jml.runtime.*; @SuppressWarnings("all") //@ nullable_by_default final public class Entry { /*@ public ghost static boolean invChecksOn = true; @*/ private Entry() {} public static Object Run() { Object r = new project.Entrytypes.A1(new project.Entrytypes.A2(1L)); //@ assert (Utils.is_(r,project.Entrytypes.A1.class) || Utils.is_(r,project.Entrytypes.B1.class)); Number atomicTmp_1 = 5L; //@ assert Utils.is_int(atomicTmp_1); { /* Start of atomic statement */ //@ set invChecksOn = false; Object apply_1 = null; if (r instanceof project.Entrytypes.A1) { apply_1 = ((project.Entrytypes.A1) r).get_f(); } else if (r instanceof project.Entrytypes.B1) { apply_1 = ((project.Entrytypes.B1) r).get_f(); } else { throw new RuntimeException("Missing member: f"); } Object stateDes_1 = apply_1; if (stateDes_1 instanceof project.Entrytypes.A2) { //@ assert stateDes_1 != null; ((project.Entrytypes.A2) stateDes_1).set_x(atomicTmp_1); } else if (stateDes_1 instanceof project.Entrytypes.B2) { //@ assert stateDes_1 != null; ((project.Entrytypes.B2) stateDes_1).set_x(atomicTmp_1); } else { throw new RuntimeException("Missing member: x"); } //@ set invChecksOn = true; //@ assert stateDes_1 instanceof project.Entrytypes.A2 ==> ((project.Entrytypes.A2) stateDes_1).valid(); //@ assert (Utils.is_(r,project.Entrytypes.A1.class) || Utils.is_(r,project.Entrytypes.B1.class)); //@ assert r instanceof project.Entrytypes.B1 ==> ((project.Entrytypes.B1) r).valid(); //@ assert r instanceof project.Entrytypes.A1 ==> ((project.Entrytypes.A1) r).valid(); //@ assert stateDes_1 instanceof project.Entrytypes.B2 ==> ((project.Entrytypes.B2) stateDes_1).valid(); } /* End of atomic statement */ IO.println("Done! Expected no violations"); return 0L; } public String toString() { return "Entry{}"; } }