@@ -14,73 +14,72 @@ PREFIX owl:
14
14
# #
15
15
16
16
sparql:Function rdf:type rdfs:Class .
17
- sparql:Operator rdf:type rdfs:Class .
18
17
sparql:FunctionalForm rdf:type rdfs:Class .
19
18
sparql:Aggregate rdf:type rdfs:Class .
20
19
21
20
# # Operators
22
21
23
- sparql:plus rdf:type sparql:Function, sparql:Operator ;
22
+ sparql:plus rdf:type sparql:Function ;
24
23
rdfs:comment " This operator adds two numeric expressions and returns their sum." ;
25
24
rdfs:isDefinedBy ;
26
25
.
27
26
28
- sparql:subtract rdf:type sparql:Function, sparql:Operator ;
27
+ sparql:subtract rdf:type sparql:Function ;
29
28
rdfs:comment " This operator subtracts the second numeric expression from the first and returns the result." ;
30
29
rdfs:isDefinedBy ;
31
30
.
32
31
33
- sparql:multiply rdf:type sparql:Function, sparql:Operator ;
32
+ sparql:multiply rdf:type sparql:Function ;
34
33
rdfs:comment " This operator multiplies two numeric expressions and returns the product." ;
35
34
rdfs:isDefinedBy ;
36
35
.
37
36
38
- sparql:divide rdf:type sparql:Function, sparql:Operator ;
37
+ sparql:divide rdf:type sparql:Function ;
39
38
rdfs:comment " This operator divides the first numeric expression by the second and returns the result." ;
40
39
rdfs:isDefinedBy ;
41
40
.
42
41
43
- sparql:unary-minus rdf:type sparql:Function, sparql:Operator ;
42
+ sparql:unary-minus rdf:type sparql:Function ;
44
43
rdfs:comment " This unary operator returns the negation of a numeric expression." ;
45
44
rdfs:isDefinedBy ;
46
45
.
47
46
48
- sparql:unary-plus rdf:type sparql:Function, sparql:Operator ;
47
+ sparql:unary-plus rdf:type sparql:Function ;
49
48
rdfs:comment " This unary operator returns the numeric expression unchanged, acting primarily as a syntactic indicator." ;
50
49
rdfs:isDefinedBy ;
51
50
.
52
51
53
- sparql:equals rdf:type sparql:Function, sparql:Operator ;
52
+ sparql:equals rdf:type sparql:Function ;
54
53
rdfs:comment " This operator compares two expressions for equality." ;
55
54
rdfs:isDefinedBy ;
56
55
.
57
56
58
- sparql:not-equals rdf:type sparql:Function, sparql:Operator ;
57
+ sparql:not-equals rdf:type sparql:Function ;
59
58
rdfs:comment " This operator tests two expressions for inequality." ;
60
59
rdfs:isDefinedBy ;
61
60
.
62
61
63
- sparql:greaterThan rdf:type sparql:Function, sparql:Operator ;
62
+ sparql:greaterThan rdf:type sparql:Function ;
64
63
rdfs:comment " This operator tests whether the first RDF term is greater than the second RDF term." ;
65
64
rdfs:isDefinedBy ;
66
65
.
67
66
68
- sparql:lessThan rdf:type sparql:Function, sparql:Operator ;
67
+ sparql:lessThan rdf:type sparql:Function ;
69
68
rdfs:comment " This operator tests whether the first RDF term is less than the second RDF term." ;
70
69
rdfs:isDefinedBy ;
71
70
.
72
71
73
- sparql:greaterThanOrEqual rdf:type sparql:Function, sparql:Operator ;
72
+ sparql:greaterThanOrEqual rdf:type sparql:Function ;
74
73
rdfs:comment " This operator tests whether the first RDF term is greater or equal to the second RDF term." ;
75
74
rdfs:isDefinedBy ;
76
75
.
77
76
78
- sparql:lessThanOrEqual rdf:type sparql:Function, sparql:Operator ;
77
+ sparql:lessThanOrEqual rdf:type sparql:Function ;
79
78
rdfs:comment " This operator tests whether the first RDF term is less than or equal to the second RDF term." ;
80
79
rdfs:isDefinedBy ;
81
80
.
82
81
83
- sparql:logical-not rdf:type sparql:Functional, sparql:Operator ;
82
+ sparql:logical-not rdf:type sparql:Functional ;
84
83
rdfs:comment " This form computes the logical NOT of a boolean expression." ;
85
84
rdfs:isDefinedBy ;
86
85
.
@@ -112,12 +111,12 @@ sparql:filter-not-exists rdf:type sparql:FunctionalForm ;
112
111
rdfs:isDefinedBy ;
113
112
.
114
113
115
- sparql:logical-or rdf:type sparql:FunctionalForm, sparql:Operator ;
114
+ sparql:logical-or rdf:type sparql:FunctionalForm ;
116
115
rdfs:comment " This form computes the logical OR of two boolean expressions." ;
117
116
rdfs:isDefinedBy ;
118
117
.
119
118
120
- sparql:logical-and rdf:type sparql:FunctionalForm, sparql:Operator ;
119
+ sparql:logical-and rdf:type sparql:FunctionalForm ;
121
120
rdfs:comment " This form computes the logical AND of two boolean expressions." ;
122
121
rdfs:isDefinedBy ;
123
122
.
0 commit comments