-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpredicates.yaml
More file actions
9978 lines (9457 loc) · 237 KB
/
Copy pathpredicates.yaml
File metadata and controls
9978 lines (9457 loc) · 237 KB
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
# Canonical LRA predicate registry.
# Governed by capabilities/reference/predicate-standards.md.
predicates:
- id: pred:at-point-operation
name: AtPointOperation
kind: predicate
category: function
arguments:
- name: Op
role: operation
- name: f_tuple
role: functions
- name: x
role: point
returns: truth_value
polymorphic: true
surface_forms:
- at-point operation
- operation applied at a point
description: >
A value-level operation is applied to the values of a tuple of functions
at a single input.
- id: pred:pointwise-operation
name: PointwiseOperation
kind: predicate
category: function
arguments:
- name: Op
role: operation
- name: f_tuple
role: functions
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- pointwise operation
- operation applied pointwise
description: >
A value-level operation is lifted to functions by applying it at every
input in the domain.
- id: pred:at-point-relation
name: AtPointRelation
kind: predicate
category: function
arguments:
- name: Rel
role: relation
- name: f_tuple
role: functions
- name: x
role: point
returns: truth_value
polymorphic: true
surface_forms:
- at-point relation
- relation at a point
description: >
A value-level relation is checked on the values of a tuple of functions
at a single input.
- id: pred:pointwise-relation
name: PointwiseRelation
kind: predicate
category: function
arguments:
- name: Rel
role: relation
- name: f_tuple
role: functions
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- pointwise relation
- relation on a set pointwise
description: >
A value-level relation holds on a tuple of function values at every input
in the domain.
- id: pred:pointwise-relation-near
name: PointwiseRelationNear
kind: predicate
category: function
arguments:
- name: Rel
role: relation
- name: f_tuple
role: functions
- name: c
role: base_point
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- pointwise relation near a point
- relation near a point
description: >
A value-level relation holds for function values throughout some deleted
neighbourhood of a base point inside the domain.
- id: pred:bounded-near
name: BoundedNear
kind: predicate
category: function
arguments:
- name: f
role: function
- name: c
role: base_point
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- bounded near
- locally bounded
description: >
A real-valued function is bounded on some deleted neighbourhood of a base
point inside the domain.
- id: pred:bounded-away-from-zero
name: BoundedAwayFromZero
kind: predicate
category: function
arguments:
- name: f
role: function
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- bounded away from zero
- separated from zero
description: >
The absolute value of a real-valued function has a positive lower bound
on the domain.
- id: pred:bounded-away-from-zero-near
name: BoundedAwayFromZeroNear
kind: predicate
category: function
arguments:
- name: f
role: function
- name: c
role: base_point
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- bounded away from zero near
- locally separated from zero
description: >
A real-valued function is bounded away from zero on some deleted
neighbourhood of a base point inside the domain.
- id: pred:uniformly-bounded-family
name: UniformlyBoundedFamily
kind: predicate
category: function
arguments:
- name: F
role: family
- name: I
role: index_set
- name: A
role: domain
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- uniformly bounded family
- family uniformly bounded on a set
description: >
One real bound controls every function in the family at every input in
the domain.
- id: pred:within
name: Within
kind: predicate
category: topology
arguments:
- name: x
role: point
- name: W
role: local_region
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- within
- lies within
- belongs to a local region
description: >
The point x lies within the local region W in the ambient object X.
The local region may be a tolerance ball, punctured ball, neighborhood,
punctured neighborhood, or another named localizing object.
- id: pred:is-ball
name: IsBall
kind: predicate
category: topology
arguments:
- name: B
role: ball
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a ball
- metric ball
- open ball
description: >
The object B is the ball centered at c with radius r in the ambient
space X.
- id: pred:is-punctured-ball
name: IsPuncturedBall
kind: predicate
category: topology
arguments:
- name: B_dot
role: punctured_ball
surface: 'B^\times'
- name: B
role: underlying_ball
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a punctured ball
- is a deleted ball
description: >
The object B_dot is the ball B centered at c with radius r in X after
removing the center c.
- id: pred:is-closed-ball
name: IsClosedBall
kind: predicate
category: topology
arguments:
- name: B_bar
role: closed_ball
surface: '\overline{B}'
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a closed ball
- closed ball
- metric closed ball
description: >
The object B_bar is the closed ball centered at c with radius r in the
ambient space X.
- id: pred:is-punctured-closed-ball
name: IsPuncturedClosedBall
kind: predicate
category: topology
arguments:
- name: B_bar_dot
role: punctured_closed_ball
surface: '\overline{B}^{\times}'
- name: B_bar
role: underlying_closed_ball
surface: '\overline{B}'
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a punctured closed ball
- is a deleted closed ball
- punctured closed ball
- deleted closed ball
description: >
The object B_bar_dot is the closed ball B_bar centered at c with radius r
in X after removing the center c.
- id: pred:is-neighborhood
name: IsNeighborhood
kind: predicate
category: topology
arguments:
- name: U
role: neighborhood
- name: c
role: center
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a neighborhood
- is a neighbourhood
description: >
The object U is a neighborhood of c in the ambient topological space X.
- id: pred:is-punctured-neighborhood
name: IsPuncturedNeighborhood
kind: predicate
category: topology
arguments:
- name: U_dot
role: punctured_neighborhood
surface: 'U^\times'
- name: U
role: underlying_neighborhood
- name: c
role: center
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a punctured neighborhood
- is a punctured neighbourhood
- is a deleted neighborhood
- is a deleted neighbourhood
description: >
The object U_dot is the neighborhood U of c in X after removing the
center c.
- id: pred:is-topology
name: IsTopology
kind: predicate
category: topology
arguments:
- name: tau
role: topology
surface: '\tau'
- name: X
role: carrier
returns: truth_value
ambient_argument: X
surface_forms:
- Topology
- is a topology
- topology axioms
description: >
The collection tau is a topology on the carrier set X.
- id: pred:is-metric
name: IsMetric
kind: predicate
category: topology
arguments:
- name: d
role: metric
- name: X
role: carrier
returns: truth_value
ambient_argument: X
surface_forms:
- Metric
- is a metric
- metric axioms
description: >
The function d is a metric on the carrier set X.
- id: pred:is-pseudo-metric
name: IsPseudoMetric
kind: predicate
category: topology
arguments:
- name: d
role: pseudo_metric
- name: X
role: carrier
returns: truth_value
ambient_argument: X
surface_forms:
- PseudoMetric
- is a pseudo-metric
- pseudo-metric axioms
description: >
The function d is a pseudo-metric on the carrier set X.
- id: pred:is-pointlike
name: IsPointlike
kind: predicate
category: topology
arguments:
- name: u
role: function
- name: X
role: metric_space
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- pointlike
- is pointlike
- pointlike function
description: >
The function u satisfies the pointlike inequalities with respect to the
metric-space context X.
- id: pred:is-norm
name: IsNorm
kind: predicate
category: topology
arguments:
- name: norm
role: norm
surface: '\|\cdot\|'
- name: V
role: vector_space
returns: truth_value
ambient_argument: V
surface_forms:
- Norm
- is a norm
- norm axioms
description: >
The function norm is a norm on the ambient vector space V.
- id: pred:is-euclidean-space
name: IsEuclideanSpace
kind: predicate
category: topology
arguments:
- name: E
role: euclidean_space_structure
returns: truth_value
ambient_argument: E
surface_forms:
- EuclideanSpace
- is a Euclidean space
- Euclidean space structure
description: >
The packaged object E satisfies the Euclidean space structure expected
in the ambient metric or topological context.
- id: pred:is-interval
name: IsInterval
kind: predicate
category: topology
arguments:
- name: I
role: interval
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is an interval
- interval
description: >
The object I is an interval in the ambient ordered or topological space
X.
- id: pred:is-open-interval
name: IsOpenInterval
kind: predicate
category: topology
arguments:
- name: I
role: interval
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is an open interval
- open interval
description: >
The object I is an interval in X whose finite endpoints are excluded.
- id: pred:is-closed-interval
name: IsClosedInterval
kind: predicate
category: topology
arguments:
- name: I
role: interval
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a closed interval
- closed interval
description: >
The object I is an interval in X whose finite endpoints are included.
- id: pred:is-centered-open-interval
name: IsCenteredOpenInterval
kind: predicate
category: topology
arguments:
- name: I
role: interval
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a centered open interval
- centered open interval
- symmetric open interval
- open interval centered at a point
description: >
The object I is the open interval centered at c with radius r in the
ambient ordered or topological space X.
- id: pred:is-punctured-centered-open-interval
name: IsPuncturedCenteredOpenInterval
kind: predicate
category: topology
arguments:
- name: I_dot
role: punctured_interval
surface: 'I^\times'
- name: I
role: underlying_interval
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a punctured centered open interval
- is a deleted centered open interval
- punctured centered open interval
- deleted centered open interval
- punctured symmetric open interval
- deleted symmetric open interval
description: >
The object I_dot is the centered open interval I centered at c with
radius r in X after removing the center c.
- id: pred:is-centered-closed-interval
name: IsCenteredClosedInterval
kind: predicate
category: topology
arguments:
- name: I
role: interval
- name: c
role: center
- name: r
role: radius
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a centered closed interval
- centered closed interval
- symmetric closed interval
- closed interval centered at a point
description: >
The object I is the closed interval centered at c with radius r in the
ambient ordered or topological space X.
- id: pred:is-bounded-interval
name: IsBoundedInterval
kind: predicate
category: topology
arguments:
- name: I
role: interval
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a bounded interval
- bounded interval
description: >
The object I is an interval in X with finite left and right endpoints.
- id: pred:is-empty
name: IsEmpty
kind: predicate
category: set
arguments:
- name: A
role: object_or_collection
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- empty
- is empty
- has no elements
- has no members
description: >
The object or collection A has no elements, members, points, or
admissible inputs in the relevant ambient context.
- id: pred:is-nonempty
name: IsNonempty
kind: predicate
category: set
arguments:
- name: A
role: object_or_collection
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- nonempty
- is nonempty
- has elements
- has members
description: >
The object or collection A has at least one element, member, point, or
admissible input in the relevant ambient context.
- id: pred:converges-to
name: ConvergesTo
kind: predicate
category: sequence
arguments:
- name: x
role: sequence
- name: L
role: limit
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- converges to
- tends to a limit
description: >
The sequence or indexed object x converges to L in the ambient object X.
- id: pred:is-cauchy
name: IsCauchy
kind: predicate
category: sequence
arguments:
- name: x
role: sequence
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- CauchySequence
- is cauchy
- cauchy condition
description: >
The sequence or indexed object x satisfies the Cauchy condition in X.
- id: pred:is-null
name: IsNull
kind: predicate
category: sequence
arguments:
- name: x
role: sequence_or_object
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is null
- null sequence
- converges to zero
description: >
The object x is null in X, typically meaning it converges to the zero
object of X.
- id: pred:is-constant
name: IsConstant
kind: predicate
category: function
arguments:
- name: x
role: object
- name: c
role: constant_value
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is constant
- constant object
- constant sequence
- constant function
description: >
The object x has constant value c in the ambient object X.
- id: pred:is-ultimately-constant
name: IsUltimatelyConstant
kind: predicate
category: sequence
arguments:
- name: x
role: sequence
- name: c
role: eventual_value
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is ultimately constant
- eventually constant
description: >
The sequence x is eventually equal to the value c in X.
- id: pred:is-subsequence
name: IsSubsequence
kind: predicate
category: sequence
arguments:
- name: y
role: subsequence
- name: x
role: sequence
returns: truth_value
surface_forms:
- is a subsequence
- subsequence
description: >
The sequence y is obtained from x by a strictly increasing index map.
- id: pred:has-convergent-subsequence
name: HasConvergentSubsequence
kind: predicate
category: sequence
arguments:
- name: x
role: sequence
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- has a convergent subsequence
description: >
Some subsequence of x converges in the ambient object X.
- id: pred:is-divergent
name: IsDivergent
kind: predicate
category: sequence
arguments:
- name: x
role: sequence_or_object
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is divergent
- diverges
description: >
The object x fails to converge in the ambient object X.
- id: pred:diverges-to-positive-infinity
name: DivergesToPositiveInfinity
kind: predicate
category: sequence
arguments:
- name: x
role: sequence_or_function
- name: P
role: ambient_ordered_structure
returns: truth_value
ambient_argument: P
polymorphic: true
surface_forms:
- diverges to positive infinity
- tends to positive infinity
description: >
The object x eventually exceeds every bound in the ambient ordered
structure P.
- id: pred:diverges-to-negative-infinity
name: DivergesToNegativeInfinity
kind: predicate
category: sequence
arguments:
- name: x
role: sequence_or_function
- name: P
role: ambient_ordered_structure
returns: truth_value
ambient_argument: P
polymorphic: true
surface_forms:
- diverges to negative infinity
- tends to negative infinity
description: >
The object x eventually lies below every bound in the ambient ordered
structure P.
- id: pred:is-oscillatory
name: IsOscillatory
kind: predicate
category: sequence
arguments:
- name: x
role: sequence_or_function
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is oscillatory
- oscillatory behavior
description: >
The object x exhibits oscillatory behavior in the ambient object X.
- id: pred:limsup
name: Limsup
kind: predicate
category: analysis
arguments:
- name: L
role: limit_superior
- name: x
role: object
- name: A
role: ambient
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- limsup
- limit superior
description: >
The object L is the limit superior of x in the ambient object A.
- id: pred:liminf
name: Liminf
kind: predicate
category: analysis
arguments:
- name: L
role: limit_inferior
- name: x
role: object
- name: A
role: ambient
returns: truth_value
ambient_argument: A
polymorphic: true
surface_forms:
- liminf
- limit inferior
description: >
The object L is the limit inferior of x in the ambient object A.
- id: pred:is-cluster-value
name: IsClusterValue
kind: predicate
category: analysis
arguments:
- name: L
role: cluster_value
- name: x
role: object
- name: X
role: ambient
returns: truth_value
ambient_argument: X
polymorphic: true
surface_forms:
- is a cluster value
- cluster value
description: >
The value L occurs as a cluster value of x in X.
- id: pred:eventually
name: Eventually
kind: predicate
category: analysis
arguments:
- name: phi
role: property
surface: '\varphi'
- name: I
role: index_or_filter
returns: truth_value
polymorphic: true
surface_forms:
- eventually
- eventually true
description: >
The property phi holds eventually along the index or filter I.
- id: pred:frequently
name: Frequently
kind: predicate
category: analysis
arguments:
- name: phi
role: property
surface: '\varphi'
- name: I
role: index_or_filter
returns: truth_value
polymorphic: true
surface_forms:
- frequently
- infinitely often
description: >
The property phi holds frequently along the index or filter I.
- id: pred:eventually-equal
name: EventuallyEqual
kind: predicate
category: analysis
arguments:
- name: x
role: left_object
- name: y
role: right_object
- name: I
role: index_or_filter
returns: truth_value
polymorphic: true
surface_forms:
- eventually equal
- equal eventually
description: >
The objects x and y agree eventually along the index or filter I.
- id: pred:is-open
name: IsOpen
kind: predicate
category: topology
arguments:
- name: U
role: subset
- name: X
role: ambient
returns: truth_value
ambient_argument: X