Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fact noEventAtSameTime {
  2.     all e1,e2: Event | (e1 != e2) and (e1.startDate.day + e1.endDate.day = e2.startDate.day + e2.endDate.day)
  3.         implies
  4.         (e1.endDate.time < e2.startDate.time or e2.endDate.time < e1.startDate.time)
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement