-
Notifications
You must be signed in to change notification settings - Fork 29
Description
Describe the bug
under certain circumstances oasis will ignore terms
This occurs in Oasis Web and in the CLI
To Reproduce
Steps to reproduce the behavior:
entering 2+(x+1)*log(e,x)+C returns 2 + C which incorrectly ignores the (x+1)*log(e,x) term
Expected behavior
Should just output the input without change 2+(x+1)*log(e,x)+C
Screenshots
If applicable, add screenshots to help explain your problem. For Oasis Web, browser console logs are useful. For Oasis Desktop, please provide crash dumps from your operating system.
Desktop (please complete the following information):
- OS: Windows 11
- Version [e.g. 22 or commit hash]
Web (please complete the following information):
- Device: PC
- OS: Windows 11
- Browser Chrome
- Version [e.g. 22]
Additional context
Add any other context about the problem here.
in this specific case something like this:
2+(x+1)*log(e,x)+2
will not lead to the missing term, but it wont simplify it either
it should become 4+(x+1)*log(e,x) but it leaves it as 2+(x+1)*log(e,x)+2