Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwutk committed Sep 10, 2023
1 parent 214e65b commit 65507b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/video_processor/steps/test_in_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
(arr(), ['ignore_roadtype()', None, None]),
(~(F.contained(o.traj, 'intersection') & F.contained(o2.trajc, 'lane')), ['(NOT (is_roadtype(intersection) AND is_roadtype(lane)))', '(is_other_roadtype(intersection) OR is_other_roadtype(lane))', '(is_roadtype(intersection) OR is_roadtype(lane) OR is_roadtype(lanegroup) OR is_roadtype(lanesection) OR is_roadtype(road) OR is_roadtype(roadsection))']),
(~(F.contained(o.traj, 'intersection') | F.contained(o2.trajc, 'lane')), ['(NOT (is_roadtype(intersection) OR is_roadtype(lane)))', '(is_other_roadtype(intersection) AND is_other_roadtype(lane))', '((is_roadtype(lanegroup) OR is_roadtype(lane) OR is_roadtype(lanesection)) AND (is_roadtype(lanegroup) OR is_roadtype(road) OR is_roadtype(roadsection) OR is_roadtype(intersection)))']),
(~(~F.contained(o.traj, 'intersection') | F.contained(o2.trajc, 'lane')), ['(NOT ((NOT is_roadtype(intersection)) OR is_roadtype(lane)))', '(is_roadtype(intersection) AND is_other_roadtype(lane))', 'is_roadtype(intersection)']),
# Real Queries
((((o1.type == 'car') | (o1.type == 'truck')) &
Expand Down

0 comments on commit 65507b7

Please sign in to comment.