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
The problem below will render on 2.19, but not on develop. On develop there is an error about not finding enough test points.
I suspect it has to do with the changes to contextFraction.pl but I haven't been able to track it down.
contextFraction.pl
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "PGML.pl", "contextFraction.pl", "parserAssignment.pl", "bizarroArithmetic.pl", ); Context("Fraction")->variables->add(y => 'Real'); parser::Assignment->Allow; Context()->operators->set( '*' => {class => 'bizarro::BOP::multiply', isCommand => 1}, '/' => {class => 'bizarro::BOP::divide', isCommand => 1}, ); $f = Formula("y = 2x + 1")->reduce; ENDDOCUMENT();
The text was updated successfully, but these errors were encountered:
Note, this is an MWE. There is an exercise that this came from with much more going on.
Sorry, something went wrong.
This issue is due to mishandling the implied multiplication in the new fraction context. I've made a PR (#1167) to resolve the issue.
Merge pull request #1167 from dpvc/fix-fractions
352b286
Fix problem with implied multiplication in fraction context, and some typos. (#1166)
No branches or pull requests
The problem below will render on 2.19, but not on develop. On develop there is an error about not finding enough test points.
I suspect it has to do with the changes to
contextFraction.pl
but I haven't been able to track it down.The text was updated successfully, but these errors were encountered: