Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ makedocs(; sitename="LazySets.jl",
"Line" => "lib/sets/Line.md",
"LineSegment" => "lib/sets/LineSegment.md",
"Polygon" => "lib/sets/Polygon.md",
"RotatedHyperrectangle" => "lib/sets/RotatedHyperrectangle.md",
"SimpleSparsePolynomialZonotope" => "lib/sets/SimpleSparsePolynomialZonotope.md",
"SparsePolynomialZonotope" => "lib/sets/SparsePolynomialZonotope.md",
"Singleton" => "lib/sets/Singleton.md",
Expand Down
43 changes: 0 additions & 43 deletions docs/src/lib/sets/RotatedHyperrectangle.md

This file was deleted.

3 changes: 1 addition & 2 deletions src/Interfaces/AbstractZonotope.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,10 @@ The subtypes of `AbstractZonotope` (including abstract interfaces):

```jldoctest; setup = :(using LazySets: subtypes)
julia> subtypes(AbstractZonotope)
5-element Vector{Any}:
4-element Vector{Any}:
AbstractHyperrectangle
HParallelotope
LineSegment
RotatedHyperrectangle
Zonotope
```
"""
Expand Down
3 changes: 1 addition & 2 deletions src/Interfaces/LazySet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ If we only consider *concrete* subtypes, then:
julia> concrete_subtypes = subtypes(LazySet, true);

julia> length(concrete_subtypes)
54
53

julia> println.(concrete_subtypes);
AffineMap
Expand Down Expand Up @@ -107,7 +107,6 @@ Polygon
QuadraticMap
Rectification
ResetMap
RotatedHyperrectangle
SimpleSparsePolynomialZonotope
Singleton
SparsePolynomialZonotope
Expand Down
2 changes: 0 additions & 2 deletions src/LazySets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ include("Sets/LineSegment/LineSegmentModule.jl")
include("Sets/Polygon/PolygonModule.jl")
@reexport using ..PolygonModule: Polygon

include("Sets/RotatedHyperrectangle.jl")

include("Sets/SimpleSparsePolynomialZonotope/SimpleSparsePolynomialZonotopeModule.jl")
@reexport using ..SimpleSparsePolynomialZonotopeModule: SimpleSparsePolynomialZonotope,
SSPZ,
Expand Down
201 changes: 0 additions & 201 deletions src/Sets/RotatedHyperrectangle.jl

This file was deleted.

2 changes: 1 addition & 1 deletion test/Sets/EmptySet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ end

# intersection
for X in filter(!isoperationtype, LazySets.subtypes(LazySet, true))
if X ∈ [RotatedHyperrectangle, Star, Polygon, DensePolynomialZonotope,
if X ∈ [Star, Polygon, DensePolynomialZonotope,
SparsePolynomialZonotope, SimpleSparsePolynomialZonotope]
# missing rand()
continue
Expand Down
69 changes: 0 additions & 69 deletions test/Sets/RotatedHyperrectangle.jl

This file was deleted.

3 changes: 0 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,6 @@ if test_suite_basic
@testset "LazySets.HParallelotope" begin
include("Sets/HParallelotope.jl")
end
@testset "LazySets.RotatedHyperrectangle" begin
include("Sets/RotatedHyperrectangle.jl")
end
@testset "LazySets.Star" begin
include("Sets/Star.jl")
end
Expand Down
Loading