Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. and{
  2. event a: temp{var A},
  3. exists event b: and{
  4. event x: t{},
  5. not event y: k{var A}
  6. } where { {x, y} within 3 min}
  7. } where { {a, b} within 1 min }
  8.  
  9.  
  10. Wird zu:
  11.  
  12. and{
  13. event a: temp{var A},
  14. event b_x: t{},
  15. not event b_y: k{var A}
  16. } where {
  17. {a, b_x} within 1 min,
  18. {b_x, b_y} within 3 min
  19. } group by { event a, var A }
  20.  
  21.  
  22. Die Subsitution für das event b darf nur die positiven events berücksichtigen, d.h. "{a, b} within 1 min" wird NICHT zu "{a, b_x, b_y} within 1 min" sondern zu "{a, b_x} within 1 min"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement