We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
>>> import clifford >>> layout, _ = clifford.Cl(3, 0, 1, firstIdx=0) >>> locals().update(layout.blades) >>> e0.isBlade() clifford\__init__.py: RuntimeWarning: divide by zero encountered in true_divide newValue = self.value / other clifford\__init__.py: RuntimeWarning: invalid value encountered in true_divide newValue = self.value / other False
As discovered by @enkimute
The text was updated successfully, but these errors were encountered:
isBlade
This happens in CGA too:
>>> from clifford.g2c import * >>> t = up(e1) | (up(e1)^up(e2)^up(-e1)) # tangent blade >>> t*t 0 >>> t.isBlade() clifford\_multivector.py:264: RuntimeWarning: divide by zero encountered in true_divide newValue = self.value / other clifford\_multivector.py:264: RuntimeWarning: invalid value encountered in true_divide newValue = self.value / other clifford\_multivector.py:691: RuntimeWarning: invalid value encountered in greater nonzero_grades = self.layout._basis_blade_order.grades[abs(self.value) > eps] False
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As discovered by @enkimute
The text was updated successfully, but these errors were encountered: