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
Simple example:
Algebra(2, 0, 1, () => { console.log(0xff / 255); });
Generated code:
This bug may also be responsible for:
Algebra(3,0,1).inline("E**(r1 * 1e01)"); // vs. Algebra(3,0,1).inline((r1) => E**(r1 * 1e01));
Output:
Suddenly ** is Element.Mul and * is Element.LDot in contrast to ** being Element.Pow.
**
Element.Mul
*
Element.LDot
Element.Pow
(I didn't figure out yet which commit introduced these bugs, but maybe you already have a feeling what's wrong)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Simple example:
Generated code:
This bug may also be responsible for:
Output:
Suddenly
**
isElement.Mul
and*
isElement.LDot
in contrast to**
beingElement.Pow
.(I didn't figure out yet which commit introduced these bugs, but maybe you already have a feeling what's wrong)
The text was updated successfully, but these errors were encountered: