You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the __str__ method of MultiVector, there is the following line:
ifabs(coeff) <_settings._eps:
continue# too small to print
But this doesn't feel right to me since e.g. I'm trying to compute inverses so I need _eps to be really tiny, but that shouldn't impact printing. I have the feeling _settings._print_precision should be used here just like everywhere else in this method but since it isn't, perhaps there is a reason I'm missing?
If it is a bug let me know, I can make a quick PR.
The text was updated successfully, but these errors were encountered:
In the
__str__
method of MultiVector, there is the following line:But this doesn't feel right to me since e.g. I'm trying to compute inverses so I need
_eps
to be really tiny, but that shouldn't impact printing. I have the feeling_settings._print_precision
should be used here just like everywhere else in this method but since it isn't, perhaps there is a reason I'm missing?If it is a bug let me know, I can make a quick PR.
The text was updated successfully, but these errors were encountered: