Skip to content

Commit

Permalink
Merge pull request #3641 from JuliaReach/schillic/ispolyhedral
Browse files Browse the repository at this point in the history
Rename function
  • Loading branch information
schillic authored Sep 9, 2024
2 parents d832804 + cb0406f commit 1ddf897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interfaces/LazySet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ pair of sets ``(X, Y)`` we have the identity ``(X ∩ Y)^C = X^C ∪ Y^C``. We c
apply this identity for each constraint that defines a polyhedral set.
"""
function complement(X::LazySet)
if !is_polyhedral(X)
if !ispolyhedral(X)
throw(ArgumentError("this implementation requires a polyhedral set"))
end
return UnionSetArray(constraints_list(Complement(X)))
Expand Down

0 comments on commit 1ddf897

Please sign in to comment.