Skip to content

Commit

Permalink
1.2.5 (#139)
Browse files Browse the repository at this point in the history
Bugfix: Add missing unpacking in symengine Mul
  • Loading branch information
KristianJensen authored Oct 19, 2017
1 parent c34103b commit 102437f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optlang/symbolics.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def mul(*args):
args = args[0]
elif len(args) == 0:
return One # if you multiply nothing the result should be zero
return Mul(args)
return Mul(*args)

else: # Use sympy
import sympy
Expand Down

0 comments on commit 102437f

Please sign in to comment.