Allen-ISD-Computer-Science / REPO_AutomaticDifferentiation_2024

Given some input equation, provide a numerical derivative at a given point. The user have a standard text input for the equation and point and the algorithm will provide the numerical derivative along with the steps the algorithm took to derive it. This algorithm will be able to differentiate trigonometric function, logarithmic, and exponentials.
GNU General Public License v3.0
0 stars 0 forks source link

Task: Get parenthesis parsing working for tokenizer #61

Closed aryanjverma closed 6 months ago

aryanjverma commented 6 months ago

Fix tokenizer to make statements like (x+1)(x+2) be parsed.

27

aryanjverma commented 6 months ago

We have agreed that parenthesis parsing would create situations where users would interpret expressions in different ways, which is why we will not permit statemtns such as (x+1)(x+2) and instead make users specify a multiplication sign.