Skip to content

Commit

Permalink
fixed roots-to-polynomial atom
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisMitchell committed Jan 17, 2019
1 parent 46bfbb1 commit 70c9fd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jelly/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2189,7 +2189,7 @@ def zip_ragged(array):
'Æṛ': attrdict(
arity = 1,
ldepth = 1,
call = lambda z: jellify(sympy.prod(map(sympy.poly('x').__sub__, z)).coeffs()[::-1])
call = lambda z: jellify(sympy.prod(map(sympy.poly('x').__sub__, z)).all_coeffs()[::-1])
),
'ÆT': attrdict(
arity = 1,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = 'jellylanguage',
version = '0.1.30',
version = '0.1.31',
packages = [
'jelly'
],
Expand Down

0 comments on commit 70c9fd9

Please sign in to comment.