Example #1
0
 def __rmul__(self, other):
     """other*BraBase"""
     from sympy.physics.quantum.operator import OuterProduct
     if isinstance(other, KetBase):
         return OuterProduct(other, self)
     else:
         return Expr.__rmul__(self, other)
Example #2
0
 def __rmul__(self, other):
     """other*BraBase"""
     from sympsi.operator import OuterProduct
     if isinstance(other, KetBase):
         return OuterProduct(other, self)
     else:
         return Expr.__rmul__(self, other)
Example #3
0
 def __rmul__(self, other):
     """other*KetBase"""
     from sympy.physics.quantum.innerproduct import InnerProduct
     if isinstance(other, BraBase):
         return InnerProduct(other, self)
     else:
         return Expr.__rmul__(self, other)
Example #4
0
 def __rmul__(self, other):
     """other*KetBase"""
     from sympsi.innerproduct import InnerProduct
     if isinstance(other, BraBase):
         return InnerProduct(other, self)
     else:
         return Expr.__rmul__(self, other)