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
In #1799 we added isuniversal. If the keyword argument witness is active, the function looks at the values, otherwise it doesn't. This leads to the inconsistency isuniversal(HPolytope()) = false and isuniversal(HPolytope(), true) = (true, N[]).
We can add a function isuniversaltype to use only the type (no witness is provided) and isuniversal which uses the value (and a witness is optional).
The text was updated successfully, but these errors were encountered:
In #1799 we added
isuniversal
. If the keyword argumentwitness
is active, the function looks at the values, otherwise it doesn't. This leads to the inconsistencyisuniversal(HPolytope()) = false
andisuniversal(HPolytope(), true) = (true, N[])
.We can add a function
isuniversaltype
to use only the type (no witness is provided) andisuniversal
which uses the value (and a witness is optional).The text was updated successfully, but these errors were encountered: