Skip to content

Commit be4a573

Browse files
authored
Merge pull request #4081 from JuliaReach/schillic/in
Rename `∈` to `in`
2 parents fb2443b + b7dce28 commit be4a573

File tree

113 files changed

+233
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+233
-232
lines changed

docs/src/lib/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ volume(::LazySet)
6565
affine_map(::AbstractMatrix, ::LazySet, ::AbstractVector)
6666
distance(::AbstractVector, ::LazySet)
6767
exponential_map(::AbstractMatrix, ::LazySet)
68-
(::AbstractVector, ::LazySet)
68+
in(::AbstractVector, ::LazySet)
6969
is_interior_point(::AbstractVector, ::LazySet)
7070
linear_map(::AbstractMatrix, ::LazySet)
7171
permute(::LazySet, ::AbstractVector{Int})

docs/src/lib/interfaces/AbstractAffineMap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ isuniversal(::AbstractAffineMap)
101101
CurrentModule = LazySets.API
102102
```
103103
```@docs; canonical=false
104-
(::AbstractVector, ::LazySet)
104+
in(::AbstractVector, ::LazySet)
105105
```
106106
```@meta
107107
CurrentModule = LazySets
108108
```
109109
```@docs
110-
(::AbstractVector, ::AbstractAffineMap)
110+
in(::AbstractVector, ::AbstractAffineMap)
111111
```
112112
```@meta
113113
CurrentModule = LazySets.API

docs/src/lib/interfaces/AbstractBallp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ This interface defines the following functions:
2828
CurrentModule = LazySets.API
2929
```
3030
```@docs; canonical=false
31-
(::AbstractVector, ::LazySet)
31+
in(::AbstractVector, ::LazySet)
3232
```
3333
```@meta
3434
CurrentModule = LazySets
3535
```
3636
```@docs
37-
(::AbstractVector, ::AbstractBallp)
37+
in(::AbstractVector, ::AbstractBallp)
3838
```
3939
```@meta
4040
CurrentModule = LazySets.API

docs/src/lib/interfaces/AbstractCentrallySymmetricPolytope.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Inherited from [`AbstractPolyhedron`](@ref):
109109
* [`ispolyhedraltype`](@ref ispolyhedraltype(::Type{AbstractPolyhedron}))
110110
* [`low`](@ref low(::AbstractPolyhedron))
111111
* [`low`](@ref low(::AbstractPolyhedron, ::Int))
112-
* [``](@ref (::AbstractVector, ::AbstractPolyhedron))
112+
* [`in`](@ref in(::AbstractVector, ::AbstractPolyhedron))
113113
* [`project`](@ref project(::AbstractPolyhedron, ::AbstractVector{Int}))
114114
* [`intersection`](@ref intersection(::AbstractPolyhedron{N}, ::AbstractPolyhedron{N}) where {N})
115115
* [`isdisjoint`](@ref isdisjoint(::AbstractPolyhedron, ::AbstractPolyhedron))

docs/src/lib/interfaces/AbstractHPolygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tovrep(::AbstractHPolygon)
2929
vertices_list(::AbstractHPolygon)
3030
addconstraint!(::AbstractHPolygon, ::HalfSpace)
3131
addconstraint!(::Vector{<:HalfSpace}, ::HalfSpace)
32-
(::AbstractVector, ::AbstractHPolygon)
32+
in(::AbstractVector, ::AbstractHPolygon)
3333
isredundant(::HalfSpace, ::HalfSpace, ::HalfSpace)
3434
```
3535

docs/src/lib/interfaces/AbstractHyperrectangle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ volume(::AbstractHyperrectangle)
120120
CurrentModule = LazySets.API
121121
```
122122
```@docs; canonical=false
123-
(::AbstractVector, ::LazySet)
123+
in(::AbstractVector, ::LazySet)
124124
```
125125
```@meta
126126
CurrentModule = LazySets
127127
```
128128
```@docs
129-
(::AbstractVector, ::AbstractHyperrectangle)
129+
in(::AbstractVector, ::AbstractHyperrectangle)
130130
split(::AbstractHyperrectangle, ::AbstractVector{Int})
131131
```
132132
```@meta

docs/src/lib/interfaces/AbstractPolygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Inherited from [`AbstractPolyhedron`](@ref):
8585
* [`ispolyhedraltype`](@ref ispolyhedraltype(::Type{AbstractPolyhedron}))
8686
* [`low`](@ref low(::AbstractPolyhedron))
8787
* [`low`](@ref low(::AbstractPolyhedron, ::Int))
88-
* [``](@ref (::AbstractVector, ::AbstractPolyhedron))
88+
* [`in`](@ref in(::AbstractVector, ::AbstractPolyhedron))
8989
* [`project`](@ref project(::AbstractPolyhedron, ::AbstractVector{Int}))
9090
* [`isdisjoint`](@ref isdisjoint(::AbstractPolyhedron, ::AbstractPolyhedron))
9191

docs/src/lib/interfaces/AbstractPolyhedron.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ vertices_list(::AbstractPolyhedron)
5252
CurrentModule = LazySets.API
5353
```
5454
```@docs; canonical=false
55-
(::AbstractVector, ::LazySet)
55+
in(::AbstractVector, ::LazySet)
5656
```
5757
```@meta
5858
CurrentModule = LazySets
5959
```
6060
```@docs
61-
(::AbstractVector, ::AbstractPolyhedron)
61+
in(::AbstractVector, ::AbstractPolyhedron)
6262
project(::AbstractPolyhedron, ::AbstractVector{Int})
6363
intersection(::AbstractPolyhedron{N}, ::AbstractPolyhedron{N}) where {N}
6464
minkowski_sum(::AbstractPolyhedron, ::AbstractPolyhedron)

docs/src/lib/interfaces/AbstractPolytope.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Inherited from [`AbstractPolyhedron`](@ref):
145145
* [`ispolyhedraltype`](@ref ispolyhedraltype(::Type{AbstractPolyhedron}))
146146
* [`low`](@ref low(::AbstractPolyhedron))
147147
* [`low`](@ref low(::AbstractPolyhedron, ::Int))
148-
* [``](@ref (::AbstractVector, ::AbstractPolyhedron))
148+
* [`in`](@ref in(::AbstractVector, ::AbstractPolyhedron))
149149
* [`project`](@ref project(::AbstractPolyhedron, ::AbstractVector{Int}))
150150
* [`intersection`](@ref intersection(::AbstractPolyhedron{N}, ::AbstractPolyhedron{N}) where {N})
151151
* [`isdisjoint`](@ref isdisjoint(::AbstractPolyhedron, ::AbstractPolyhedron))

docs/src/lib/interfaces/AbstractSingleton.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ reflect(::AbstractSingleton)
4242
CurrentModule = LazySets.API
4343
```
4444
```@docs; canonical=false
45-
(::AbstractVector, ::LazySet)
45+
in(::AbstractVector, ::LazySet)
4646
```
4747
```@meta
4848
CurrentModule = LazySets
4949
```
5050
```@docs
51-
(::AbstractVector, ::AbstractSingleton)
51+
in(::AbstractVector, ::AbstractSingleton)
5252
```
5353
```@meta
5454
CurrentModule = LazySets.API

0 commit comments

Comments
 (0)