Skip to content

Commit

Permalink
Updating failling test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Christine Zhou committed Oct 9, 2024
1 parent 8c4c600 commit 00b2855
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@

/* PSrc/FrontDesk.p */
type tRoomInfo = (roomNumber: int, isAvailable: bool);


machine Main {
var rooms: map[int, tRoomInfo];
start state Init {
entry {
new m1(default(map[int, tRoomInfo]));
}
}
}

machine m1 {
start state Init {
entry Init_Entry;
exit {
assert true;
}
}

fun Init_Entry(initialRooms: map[int, tRoomInfo]) {
new Main(default(map[int, tRoomInfo]));
assert true;
}
}


}

0 comments on commit 00b2855

Please sign in to comment.