File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -699,20 +699,20 @@ def ge(a, b):
699
699
700
700
def eq (a , b ):
701
701
"""Elementwise equality comparison, `a == b`.
702
-
702
+
703
703
Notes
704
704
-----
705
- Due to Python rules, it is not possible to correctly overload the equality symbol `==` for hashable objects,
705
+ Due to Python rules, it is not possible to correctly overload the equality symbol `==` for hashable objects,
706
706
so `eq` must always be used to compute the Elemwise equality of TensorVariables (which are hashable).
707
707
"""
708
708
709
709
710
710
def neq (a , b ):
711
711
"""Elementwise inequality comparison, `a != b`.
712
-
712
+
713
713
Notes
714
714
-----
715
- Due to Python rules, it is not possible to overload the non-equality symbol `!=` for hashable objects,
715
+ Due to Python rules, it is not possible to overload the non-equality symbol `!=` for hashable objects,
716
716
so `neq` must always be used to compute the Elemwise non-equality of TensorVariables (which are hashable).
717
717
"""
718
718
You can’t perform that action at this time.
0 commit comments