Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rational with symbol as numerator not working? #302

Open
anthonyquizon opened this issue Oct 28, 2019 · 7 comments
Open

Rational with symbol as numerator not working? #302

anthonyquizon opened this issue Oct 28, 2019 · 7 comments

Comments

@anthonyquizon
Copy link

Hello,

I'm testing out the library and tried to create a rational with a symbol as the numerator:

import symengine
A = symengine.Symbol("A")
B = symengine.Rational(A,10)

However, when I try this, I get the following error:

Traceback (most recent call last):                                                                       
  File "<stdin>", line 1, in <module>                                                                    
  File "symengine_wrapper.pyx", line 1586, in symengine.lib.symengine_wrapper.Rational.__new__           
  File "symengine_wrapper.pyx", line 1642, in symengine.lib.symengine_wrapper.Integer.__new__            
  File "symengine_wrapper.pyx", line 1078, in symengine.lib.symengine_wrapper.Basic.__int__              
  File "symengine_wrapper.pyx", line 1072, in symengine.lib.symengine_wrapper.Basic.__float__
  File "symengine_wrapper.pyx", line 921, in symengine.lib.symengine_wrapper.Basic.n                     
  File "symengine_wrapper.pyx", line 4033, in symengine.lib.symengine_wrapper.evalf
RuntimeError: Symbol cannot be evaluated.

II noticed in this issue that evalf for rationals with symbols has been excluded and thatthe error above runs evalf.

So is something like x/1 intentionally restricted from this library?

However, I'm able to create a rational if the symbol is the denominator:

B = symengine.Rational(10,A)
@certik
Copy link
Contributor

certik commented Oct 28, 2019

I always thought Rational is meant for just numbers. You can create x/1 directly using the division / operator.

@anthonyquizon
Copy link
Author

Oh great, thats good to know!

@isuruf isuruf transferred this issue from symengine/symengine Oct 28, 2019
@eric-wieser
Copy link

Give this works in sympy, should it not also work in symengine?

@isuruf
Copy link
Member

isuruf commented Dec 18, 2019

Changing

to _sympify(p)/q should work.

@certik
Copy link
Contributor

certik commented Dec 18, 2019

@isuruf should we submit a PR?

@isuruf
Copy link
Member

isuruf commented Dec 18, 2019

Sure. If someone can send a PR, I'll review.

@certik
Copy link
Contributor

certik commented Dec 18, 2019

@eric-wieser do you want to send a PR for this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants