Skip to content
Snippets Groups Projects
Commit bda43459 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Merge branch 'bug-is-negative' into 'master'

Bugfix: TypedSymbol.is_negative should not be implemented in terms of super().is_positive

See merge request !31
parents db2e9f13 f11bbbef
No related branches found
No related tags found
1 merge request!31Bugfix: TypedSymbol.is_negative should not be implemented in terms of super().is_positive
Pipeline #17224 passed
......@@ -141,7 +141,7 @@ class TypedSymbol(sp.Symbol):
if np.issubdtype(self.dtype.numpy_dtype, np.unsignedinteger):
return False
return super().is_positive
return super().is_negative
@property
def is_nonnegative(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment