-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConstraintTemplates.py
1050 lines (808 loc) · 33 KB
/
ConstraintTemplates.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from ConstraintType import ConstraintType
from SpatialObjectType import SpatialObjectType
from shapely import geometry
from shapely.geometry import Point, Polygon, MultiPolygon, LineString, MultiPoint, mapping
from shapely.ops import unary_union, nearest_points
import numpy as np
from z3 import *
import sys
TRUTH_VALUE_AGGREGATION = lambda vs: np.mean(vs)
EXIST_AGGREGATION = lambda vs: np.max(vs)
FORALL_AGGREGATION = lambda vs: np.max(vs)
DIST_NORMALIZING_FACTOR = 150.
COORD_NORMALIZING_FACTOR = 100.
CLOSE_TO_TH = 0.05
AWAY_FROM_TH = 0.2
FACILITY_SIZE = 0.15
VISIBLE_DIST = 0.20
LOCATION_SIZE_BUFFER = 0.1
TERRAIN_TYPES = ['OCEAN', 'LAKE', 'COAST', 'MOUNTAIN', 'FOREST', 'HILLS', 'WOODED_HILLS', 'PLAINS', 'DEEPOCEAN']
AUX_TERRAIN_TYPES = ['VISION_BLOCKING']
def GetLinesFromPolygon(poly):
polygons = []
lines = []
if (isinstance(poly, MultiPolygon)):
#print('it is a multipolygon')
for p in poly:
polygons.append(p)
else:
polygons.append(poly)
for p in polygons:
#print('poly:', p)
xx, yy = p.exterior.coords.xy
for i in range(len(xx) - 1):
lines.append([[xx[i], yy[i]], [xx[i+1], yy[i+1]]])
return lines
def GetSATConstraintsForVisibleFromSomeFacility(args, var_map):
assert len(args) == 3
terrain_polygon = args[0]
lines = GetLinesFromPolygon(terrain_polygon[0])
cst = False
for f1 in args[1]:
for f2 in args[2]:
# See if the line segment formed by f1 and f2 has any intersection with any line segment on the polygon
sub_cst = True
for line in lines:
slope_f = (var_map[f2][1] - var_map[f1][1]) / (var_map[f2][0] - var_map[f1][0])
slope_tr = (line[1][1] - line[0][1]) / (line[1][0] - line[0][0])
inter_x = (line[0][1] - var_map[f1][1] + slope_f * var_map[f1][0]- slope_tr * line[0][0]) / (slope_f - slope_tr)
#inter_y = var_map[f1][1] + slope_f * (inter_x - var_map[f1][0])
# No intersection either because the two lines are parallel, or the intersection between two lines are not on either lines
no_intersect = Or(
slope_f == slope_tr,
Or(And(inter_x > var_map[f2][0], inter_x > var_map[f1][0]),
And(inter_x < var_map[f1][0], inter_x < var_map[f2][0])),
And(var_map[f2][0] == var_map[f1][0], Or(And(var_map[f2][0] > line[0][0], var_map[f2][0] > line[1][0]), And(var_map[f2][0] < line[1][0], var_map[f2][0] < line[0][0])))
)
sub_cst = And(sub_cst, no_intersect)
cst = Or(cst, sub_cst)
return cst
def EvaluateVisibleFromSomeFacilitiy(args):
assert len(args) == 3
terrain_polygon = args[0]
results = []
for f1 in args[1]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[2]:
pt2 = Point(f2.Polygon[0])
line = LineString([[pt1.x, pt1.y], [pt2.x, pt2.y]])
# Check if the line intersects with any vision blocking terrain types
if line.length / DIST_NORMALIZING_FACTOR > VISIBLE_DIST or terrain_polygon[1].intersects(line):
sub_results.append(0.0)
else:
sub_results.append(1.0)
results.append(EXIST_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
VisibleFromSomeFacilitiyPred = ConstraintType("VisibleFromSome",
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateVisibleFromSomeFacilitiy,
GetSATConstraintsForVisibleFromSomeFacility,
"utterances_VisibleFromSome.txt",
built_in_args = ['VISION_BLOCKING'])
def GetSATConstraintsForToTheEastOfSomeFacility(args, var_map):
assert len(args) == 2
cst = True
for f1 in args[0]:
for f2 in args[1]:
cst = And(cst, var_map[f1][0] > var_map[f2][0] + LOCATION_SIZE_BUFFER * DIST_NORMALIZING_FACTOR)
return cst
def EvaluateToTheEastOfSomeFacility(args):
assert len(args) == 2
results = []
for f1 in args[0]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[1]:
pt2 = Point(f2.Polygon[0])
if pt1.x > pt2.x:
sub_results.append(1.0)
else:
sub_results.append(0.0)
results.append(EXIST_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
ToTheEastOfSomeFacilityPred = ConstraintType("ToTheEastOfSome",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateToTheEastOfSomeFacility,
GetSATConstraintsForToTheEastOfSomeFacility,
"utterances_ToTheEastOfSome.txt",
built_in_args = [])
def GetSATConstraintsForToTheWestOfSomeFacility(args, var_map):
assert len(args) == 2
cst = True
for f1 in args[0]:
for f2 in args[1]:
cst = And(cst, var_map[f1][0] + LOCATION_SIZE_BUFFER * DIST_NORMALIZING_FACTOR < var_map[f2][0])
return cst
def EvaluateToTheWestOfSomeFacility(args):
assert len(args) == 2
results = []
for f1 in args[0]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[1]:
pt2 = Point(f2.Polygon[0])
if pt1.x < pt2.x:
sub_results.append(1.0)
else:
sub_results.append(0.0)
results.append(EXIST_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
ToTheWestOfSomeFacilityPred = ConstraintType("ToTheWestOfSome",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateToTheWestOfSomeFacility,
GetSATConstraintsForToTheWestOfSomeFacility,
"utterances_ToTheWestOfSome.txt",
built_in_args = [])
def GetSATConstraintsForToTheSouthOfSomeFacility(args, var_map):
assert len(args) == 2
cst = True
for f1 in args[0]:
for f2 in args[1]:
cst = And(cst, var_map[f1][1] > var_map[f2][1] + LOCATION_SIZE_BUFFER * DIST_NORMALIZING_FACTOR)
return cst
def EvaluateToTheSouthOfSomeFacility(args):
assert len(args) == 2
results = []
for f1 in args[0]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[1]:
pt2 = Point(f2.Polygon[0])
if pt1.y > pt2.y:
sub_results.append(1.0)
else:
sub_results.append(0.0)
results.append(EXIST_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
ToTheSouthOfSomeFacilityPred = ConstraintType("ToTheSouthOfSome",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateToTheSouthOfSomeFacility,
GetSATConstraintsForToTheSouthOfSomeFacility,
"utterances_ToTheSouthOfSome.txt",
built_in_args = [])
def GetSATConstraintsForToTheNorthOfSomeFacility(args, var_map):
assert len(args) == 2
cst = True
for f1 in args[0]:
for f2 in args[1]:
cst = And(cst, var_map[f1][1] + LOCATION_SIZE_BUFFER * DIST_NORMALIZING_FACTOR < var_map[f2][1])
return cst
def EvaluateToTheNorthOfSomeFacility(args):
assert len(args) == 2
results = []
for f1 in args[0]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[1]:
pt2 = Point(f2.Polygon[0])
if pt1.y < pt2.y:
sub_results.append(1.0)
else:
sub_results.append(0.0)
results.append(EXIST_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
ToTheNorthOfSomeFacilityPred = ConstraintType("ToTheNorthOfSome",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateToTheNorthOfSomeFacility,
GetSATConstraintsForToTheNorthOfSomeFacility,
"utterances_ToTheNorthOfSome.txt",
built_in_args = [])
def GetSATConstraintsForOnEast(args, var_map):
assert len(args) == 1
cst = True
for f in args[0]:
cst = And(cst, var_map[f][0] / COORD_NORMALIZING_FACTOR > 0.5 + LOCATION_SIZE_BUFFER)
return cst
def EvaluateOnEast(args):
assert len(args) == 1
results = []
for f in args[0]:
pt = Point(f.Polygon[0])
if pt.x / COORD_NORMALIZING_FACTOR > 0.5:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
OnEastPred = ConstraintType("OnEast",
[SpatialObjectType.FACILITY],
EvaluateOnEast,
GetSATConstraintsForOnEast,
"utterances_OnEast.txt",
built_in_args = [])
def GetSATConstraintsForOnWest(args, var_map):
assert len(args) == 1
cst = True
for f in args[0]:
cst = And(cst, var_map[f][0] / COORD_NORMALIZING_FACTOR + LOCATION_SIZE_BUFFER < 0.5 )
return cst
def EvaluateOnWest(args):
assert len(args) == 1
results = []
for f in args[0]:
pt = Point(f.Polygon[0])
if pt.x / COORD_NORMALIZING_FACTOR < 0.5:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
OnWestPred = ConstraintType("OnWest",
[SpatialObjectType.FACILITY],
EvaluateOnWest,
GetSATConstraintsForOnWest,
"utterances_OnWest.txt",
built_in_args = [])
def GetSATConstraintsForOnSouth(args, var_map):
assert len(args) == 1
cst = True
for f in args[0]:
cst = And(cst, var_map[f][1] / COORD_NORMALIZING_FACTOR > 0.5 + LOCATION_SIZE_BUFFER)
return cst
def EvaluateOnSouth(args):
assert len(args) == 1
results = []
for f in args[0]:
pt = Point(f.Polygon[0])
if pt.y / COORD_NORMALIZING_FACTOR > 0.5:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
OnSouthPred = ConstraintType("OnSouth",
[SpatialObjectType.FACILITY],
EvaluateOnSouth,
GetSATConstraintsForOnSouth,
"utterances_OnSouth.txt",
built_in_args = [])
def GetSATConstraintsForOnNorth(args, var_map):
assert len(args) == 1
cst = True
for f in args[0]:
cst = And(cst, var_map[f][1] / COORD_NORMALIZING_FACTOR + LOCATION_SIZE_BUFFER < 0.5)
return cst
def EvaluateOnNorth(args):
assert len(args) == 1
results = []
for f in args[0]:
pt = Point(f.Polygon[0])
if pt.y / COORD_NORMALIZING_FACTOR < 0.5:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
OnNorthPred = ConstraintType("OnNorth",
[SpatialObjectType.FACILITY],
EvaluateOnNorth,
GetSATConstraintsForOnNorth,
"utterances_OnNorth.txt",
built_in_args = [])
def GetSATConstraintsForInBetweenTwoFacilities(args, var_map):
assert len(args) == 3
cst = False
for f in args[0]:
for f1 in args[1]:
for f2 in args[2]:
slope = (var_map[f2][1] - var_map[f1][1]) / (var_map[f2][0] - var_map[f1][0])
intercept = var_map[f1][1] - slope * var_map[f1][0]
cst = Or(cst,
# f is on the line segment formed by f1 and f2
And(
# f is on the line
var_map[f][1] == var_map[f][0] * slope + intercept,
# f is within the segment
And(
Or(And(var_map[f][0] <= var_map[f1][0], var_map[f][0] >= var_map[f2][0]),
And(var_map[f][0] <= var_map[f2][0], var_map[f][0] >= var_map[f1][0])),
Or(And(var_map[f][1] <= var_map[f1][1], var_map[f][1] >= var_map[f2][1]),
And(var_map[f][1] <= var_map[f2][1], var_map[f][1] >= var_map[f1][1]))
)
))
return cst
def EvaluateInBetweenTwoFacilities(args):
# Has flaw: doesn't work when the distance between f and f1/f2 is smaller than buffer_size
assert len(args) == 3
results = []
for f in args[0]:
buffer_pt = Point(f.Polygon[0]).buffer(FACILITY_SIZE * DIST_NORMALIZING_FACTOR)
for f1 in args[1]:
pt1 = Point(f1.Polygon[0])
for f2 in args[2]:
pt2 = Point(f2.Polygon[0])
line = LineString([pt1, pt2])
intersection = buffer_pt.boundary.intersection(line)
#print('intersection:', intersection)
if isinstance(intersection, LineString) or isinstance(intersection, MultiPoint):
if isinstance(intersection, MultiPoint):
intersection = LineString(intersection)
fuzzy_value = intersection.length / (FACILITY_SIZE * DIST_NORMALIZING_FACTOR * 2)
results.append(fuzzy_value)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
InBetweenTwoFacilitiesPred = ConstraintType("InBetween",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateInBetweenTwoFacilities,
GetSATConstraintsForInBetweenTwoFacilities,
"utterances_InBetweenTwoFacilities.txt",
built_in_args = [])
def GetSATConstraintsForAwayFromAllFacility(args, var_map):
assert len(args) == 2
cst = True
for f1 in args[0]:
for f2 in args[1]:
cst = And(cst, ((var_map[f1][0] - var_map[f2][0])**2 + (var_map[f1][1] - var_map[f2][1])**2) / DIST_NORMALIZING_FACTOR**2 >= AWAY_FROM_TH**2)
return cst
def EvaluateAwayFromAllFacility(args):
assert len(args) == 2
results = []
for f1 in args[0]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[1]:
pt2 = Point(f2.Polygon[0])
normalized_distance = (pt1.distance(pt2)) / DIST_NORMALIZING_FACTOR
if normalized_distance >= AWAY_FROM_TH:
sub_results.append(1.0)
else:
fuzzy_value = normalized_distance
sub_results.append(fuzzy_value)
results.append(FORALL_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
AwayFromAllFacilityPred = ConstraintType("AwayFromAll",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateAwayFromAllFacility,
GetSATConstraintsForAwayFromAllFacility,
"utterances_AwayFromAllFacility.txt",
built_in_args = [])
def GetSATConstraintsForCloseToSomeFacility(args, var_map):
assert len(args) == 2
cst = False
for f1 in args[0]:
for f2 in args[1]:
cst = Or(cst, ((var_map[f1][0] - var_map[f2][0])**2 + (var_map[f1][1] - var_map[f2][1])**2) / DIST_NORMALIZING_FACTOR**2 <= CLOSE_TO_TH**2)
return cst
def EvaluateCloseToSomeFacility(args):
assert len(args) == 2
results = []
for f1 in args[0]:
pt1 = Point(f1.Polygon[0])
sub_results = []
for f2 in args[1]:
pt2 = Point(f2.Polygon[0])
normalized_distance = (pt1.distance(pt2)) / DIST_NORMALIZING_FACTOR
if normalized_distance <= CLOSE_TO_TH:
sub_results.append(1.0)
else:
fuzzy_value = 1.0 - normalized_distance
sub_results.append(fuzzy_value)
results.append(EXIST_AGGREGATION(sub_results))
return TRUTH_VALUE_AGGREGATION(results)
CloseToSomeFacilityPred = ConstraintType("CloseToSome",
[SpatialObjectType.FACILITY, SpatialObjectType.FACILITY],
EvaluateCloseToSomeFacility,
GetSATConstraintsForCloseToSomeFacility,
"utterances_CloseToSomeFacility.txt",
built_in_args = [])
def GetSATConstraintsForToTheEastOfTerrain(args, var_map):
assert len(args) == 2
terrain_polygon = args[0]
# Get the rightmost point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
x_largest = max([coord[0] for coord in merged_coords])
if isinstance(x_largest, list) or isinstance(x_largest, tuple):
x_largest = max(x_largest)
cst = True
for f1 in args[1]:
# Ignore the case where the facility is inside the terrain
cst = And(cst, var_map[f1][0] > x_largest)
return cst
def EvaluateToTheEastOfTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
# Get the rightmost point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
x_largest = max([coord[0] for coord in merged_coords])
if isinstance(x_largest, list) or isinstance(x_largest, tuple):
x_largest = max(x_largest)
results = []
for f1 in args[1]:
pt = Point(f1.Polygon[0])
# The facility can't be inside the terrain
if terrain_polygon[1].contains(pt):
results.append(0.0)
else:
if pt.x > x_largest:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
ToTheEastOfTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
ToTheEastOfTerrainPreds[terrain_type] = ConstraintType("ToTheEastOf" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateToTheEastOfTerrain,
GetSATConstraintsForToTheEastOfTerrain,
"utterances_ToTheEastOf" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForToTheWestOfTerrain(args, var_map):
assert len(args) == 2
terrain_polygon = args[0]
# Get the leftmost point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
x_smallest = min([coord[0] for coord in merged_coords])
if isinstance(x_smallest, list) or isinstance(x_smallest, tuple):
x_smallest = min(x_smallest)
cst = True
for f1 in args[1]:
# Ignore the case where the facility is inside the terrain
cst = And(cst, var_map[f1][0] < x_smallest)
return cst
def EvaluateToTheWestOfTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
# Get the leftmost point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
x_smallest = min([coord[0] for coord in merged_coords])
if isinstance(x_smallest, list) or isinstance(x_smallest, tuple):
x_smallest = min(x_smallest)
results = []
for f1 in args[1]:
pt = Point(f1.Polygon[0])
# The facility can't be inside the terrain
if terrain_polygon[1].contains(pt):
results.append(0.0)
else:
if pt.x < x_smallest:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
ToTheWestOfTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
ToTheWestOfTerrainPreds[terrain_type] = ConstraintType("ToTheWestOf" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateToTheWestOfTerrain,
GetSATConstraintsForToTheWestOfTerrain,
"utterances_ToTheWestOf" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForToTheNorthOfTerrain(args, var_map):
assert len(args) == 2
terrain_polygon = args[0]
# Get the lowest point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
y_smallest = min([coord[1] for coord in merged_coords])
if isinstance(y_smallest, list) or isinstance(y_smallest, tuple):
y_smallest = min(y_smallest)
cst = True
for f1 in args[1]:
# Ignore the case where the facility is inside the terrain
cst = And(cst, var_map[f1][1] < y_smallest)
return cst
def EvaluateToTheNorthOfTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
# Get the lowest point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
y_smallest = min([coord[1] for coord in merged_coords])
if isinstance(y_smallest, list) or isinstance(y_smallest, tuple):
y_smallest = min(y_smallest)
results = []
for f1 in args[1]:
pt = Point(f1.Polygon[0])
# The facility can't be inside the terrain
if terrain_polygon[1].contains(pt):
results.append(0.0)
else:
if pt.y < y_smallest:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
ToTheNorthOfTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
ToTheNorthOfTerrainPreds[terrain_type] = ConstraintType("ToTheNorthOf" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateToTheNorthOfTerrain,
GetSATConstraintsForToTheNorthOfTerrain,
"utterances_ToTheNorthOf" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForToTheSouthOfTerrain(args, var_map):
assert len(args) == 2
terrain_polygon = args[0]
# Get the lowest point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
y_largest = max([coord[1] for coord in merged_coords])
if isinstance(y_largest, list) or isinstance(y_largest, tuple):
y_largest = max(y_largest)
cst = True
for f1 in args[1]:
# Ignore the case where the facility is inside the terrain
cst = And(cst, var_map[f1][1] > y_largest)
return cst
def EvaluateToTheSouthOfTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
# Get the lowest point on the polygon
mapped_polygon = mapping(terrain_polygon[0])
merged_coords = []
for poly in mapped_polygon['coordinates']:
merged_coords += poly
y_largest = max([coord[1] for coord in merged_coords])
if isinstance(y_largest, list) or isinstance(y_largest, tuple):
y_largest = max(y_largest)
results = []
for f1 in args[1]:
pt = Point(f1.Polygon[0])
# The facility can't be inside the terrain
if terrain_polygon[1].contains(pt):
results.append(0.0)
else:
if pt.y > y_largest:
results.append(1.0)
else:
results.append(0.0)
return TRUTH_VALUE_AGGREGATION(results)
ToTheSouthOfTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
ToTheSouthOfTerrainPreds[terrain_type] = ConstraintType("ToTheSouthOf" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateToTheSouthOfTerrain,
GetSATConstraintsForToTheSouthOfTerrain,
"utterances_ToTheSouthOf" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForCloseToTerrain(args, var_map):
return False
assert len(args) == 2
terrain_polygon = args[0]
cst = False
for f in args[1]:
# Should be comparing with the closest point on the polygon from the facility, instead of the centeroid, but not sure how to express this in Z3 constraints
centroid = list(terrain_polygon.centroid.coords)
lines = GetNonhorizontalLinesFromPolygon(terrain_polygon[0])
num_intersection = sum([If(
And(
Or(And(var_map[f][1] >= line[0][1], var_map[f][1] <= line[1][1]),
And(var_map[f][1] <= line[0][1], var_map[f][1] >= line[1][1])),
And(var_map[f][0] <= line[0][0], var_map[f][0] <= line[1][0])
),
1, 0) for line in lines])
cst = Or(cst,
And(
((var_map[f][0] - centroid[0])**2 + (var_map[f][1] - centroid[1])**2) / DIST_NORMALIZING_FACTOR**2 <= CLOSE_TO_TH**2),
num_intersection % 2 == 1
)
return cst
def EvaluateCloseToTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
results = []
for f1 in args[1]:
if terrain_polygon[1].contains(Point(f1.Polygon[0])):
results.append(1.0)
else:
normalized_distance = (terrain_polygon[0].distance(Point(f1.Polygon[0]))) / DIST_NORMALIZING_FACTOR
if normalized_distance <= CLOSE_TO_TH:
results.append(1.0)
else:
fuzzy_value = 1.0 - normalized_distance
results.append(fuzzy_value)
return TRUTH_VALUE_AGGREGATION(results)
CloseToTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
CloseToTerrainPreds[terrain_type] = ConstraintType("CloseTo" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateCloseToTerrain,
GetSATConstraintsForCloseToTerrain,
"utterances_CloseTo" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForAwayFromTerrain(args, var_map):
return False
assert len(args) == 2
terrain_polygon = args[0]
cst = True
for f in args[1]:
# Should be comparing with the closest point on the polygon from the facility, instead of the centeroid, but not sure how to express this in Z3 constraints
centroid = list(terrain_polygon.centroid.coords)
lines = GetNonhorizontalLinesFromPolygon(terrain_polygon[0])
num_intersection = sum([If(
And(
Or(And(var_map[f][1] >= line[0][1], var_map[f][1] <= line[1][1]),
And(var_map[f][1] <= line[0][1], var_map[f][1] >= line[1][1])),
And(var_map[f][0] <= line[0][0], var_map[f][0] <= line[1][0])
),
1, 0) for line in lines])
cst = And(cst, ((var_map[f][0] - centroid[0])**2 + (var_map[f][1] - centroid[1])**2) / DIST_NORMALIZING_FACTOR**2 >= AWAY_FROM_TH**2)
cst = And(cst, num_intersection % 2 == 0)
return cst
def EvaluateAwayFromTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
results = []
for f1 in args[1]:
normalized_distance = (terrain_polygon[0].distance(Point(f1.Polygon[0]))) / DIST_NORMALIZING_FACTOR
if normalized_distance >= AWAY_FROM_TH:
results.append(1.0)
elif terrain_polygon[1].contains(Point(f1.Polygon[0])):
results.append(0.0)
else:
fuzzy_value = normalized_distance
results.append(fuzzy_value)
return TRUTH_VALUE_AGGREGATION(results)
AwayFromTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
AwayFromTerrainPreds[terrain_type] = ConstraintType("AwayFrom" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateAwayFromTerrain,
GetSATConstraintsForAwayFromTerrain,
"utterances_AwayFrom" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetNonhorizontalLinesFromPolygon(poly):
polygons = []
lines = []
if (isinstance(poly, MultiPolygon)):
#print('it is a multipolygon')
for p in poly:
polygons.append(p)
else:
polygons.append(poly)
for p in polygons:
#print('poly:', p)
xx, yy = p.exterior.coords.xy
for i in range(len(xx) - 1):
# Skip horizontal lines
if yy[i] == yy[i+1]:
continue
lines.append([[xx[i], yy[i]], [xx[i+1], yy[i+1]]])
return lines
def GetSATConstraintsForInsideTerrain(args, var_map):
assert len(args) == 2
# Unprepared terrain polygon
terrain_polygon = args[0]
cst = True
for f in args[1]:
# Count number of lines on the polygon that has intersection with the point
lines = GetNonhorizontalLinesFromPolygon(terrain_polygon[0])
num_intersection = sum([If(
And(
Or(And(var_map[f][1] >= line[0][1], var_map[f][1] <= line[1][1]),
And(var_map[f][1] <= line[0][1], var_map[f][1] >= line[1][1])),
And(var_map[f][0] <= line[0][0], var_map[f][0] <= line[1][0])
),
1, 0) for line in lines])
cst = And(cst, num_intersection % 2 == 1)
return cst
def EvaluateInsideTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
# Every facility in args[1] has to be inside the specified terrain type
results = []
for f1 in args[1]:
if terrain_polygon[1].contains(Point(f1.Polygon[0])):
results.append(1.0)
else:
fuzzy_value = 1.0 - (terrain_polygon[0].distance(Point(f1.Polygon[0]))) / DIST_NORMALIZING_FACTOR
results.append(fuzzy_value)
return TRUTH_VALUE_AGGREGATION(results)
InsideTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
InsideTerrainPreds[terrain_type] = ConstraintType("Inside" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateInsideTerrain,
GetSATConstraintsForInsideTerrain,
"utterances_Inside" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForOutsideTerrain(args, var_map):
assert len(args) == 2
# Unprepared terrain polygon
terrain_polygon = args[0]
#print('terrain polygon:', terrain_polygon)
cst = True
for f in args[1]:
# Count number of lines on the polygon that has intersection with the horizontal line starting from the point
lines = GetLinesFromPolygon(terrain_polygon[0])
num_intersection = sum([If(
And(
Or(And(var_map[f][1] >= line[0][1], var_map[f][1] <= line[1][1]),
And(var_map[f][1] <= line[0][1], var_map[f][1] >= line[1][1])),
And(var_map[f][0] <= line[0][0], var_map[f][0] <= line[1][0])
),
1, 0) for line in lines])
cst = And(cst, num_intersection % 2 == 0)
return cst
def EvaluateOutsideTerrain(args):
assert len(args) == 2
terrain_polygon = args[0]
# Every facility in args[1] has to be outside the specified terrain type
results = []
for f1 in args[1]:
if terrain_polygon[1].contains(Point(f1.Polygon[0])) == False:
results.append(1.0)
else:
fuzzy_value = 0.0
if terrain_polygon[0].geom_type == 'MultiPolygon':
vals = []
for poly in terrain_polygon[0]:
vals.append(poly.exterior.distance(Point(f1.Polygon[0])))
fuzzy_value = 1.0 - min(vals) / DIST_NORMALIZING_FACTOR
else:
fuzzy_value = 1.0 - terrain_polygon[0].exterior.distance(Point(f1.Polygon[0])) / DIST_NORMALIZING_FACTOR
results.append(fuzzy_value)
return TRUTH_VALUE_AGGREGATION(results)
OutsideTerrainPreds = {}
for terrain_type in TERRAIN_TYPES:
OutsideTerrainPreds[terrain_type] = ConstraintType("Outside" + terrain_type,
[SpatialObjectType.TERRAIN, SpatialObjectType.FACILITY],
EvaluateOutsideTerrain,
GetSATConstraintsForOutsideTerrain,
"utterances_Outside" + terrain_type + ".txt",
built_in_args = [terrain_type])
def GetSATConstraintsForAcrossTerrainTypeFrom(args, var_map):
assert len(args) == 3
terrain_polygon = args[0]
lines = GetLinesFromPolygon(terrain_polygon[0])
cst = True
for f1 in args[1]:
for f2 in args[2]:
# See if the line segment formed by f1 and f2 has any intersection with any line segment on the polygon