You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a function validate(X::LazySet) that takes a set and validates if the set is correctly constructed according to internal assumptions. For instance, the constraints of a HPolygon should be sorted, or an HPolytope should be bounded. (For many set types, this would just be the constant function true.)
The text was updated successfully, but these errors were encountered:
Otherwise it could be validate(X::LazySet, f::Function), for example validate(X, isbounded) to really check that the set is bounded. Consider for example this use case.
Add a function
validate(X::LazySet)
that takes a set and validates if the set is correctly constructed according to internal assumptions. For instance, the constraints of aHPolygon
should be sorted, or anHPolytope
should be bounded. (For many set types, this would just be the constant functiontrue
.)The text was updated successfully, but these errors were encountered: