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
Right now local_variables are expressed as a string of form A = B*C. This is problematic, as it requires parsing this expression.
local_variables
A = B*C
We should refactor local_variables to be a dictionary: {"A": "B*C"}, it will simplify logic in a couple of places.
{"A": "B*C"}
While doing this refactor, one should also find all the occurences of split_equation and see if it makes sense to refactor them as well.
split_equation
The text was updated successfully, but these errors were encountered:
Fixed via #79
Sorry, something went wrong.
No branches or pull requests
Right now
local_variables
are expressed as a string of formA = B*C
.This is problematic, as it requires parsing this expression.
We should refactor
local_variables
to be a dictionary:{"A": "B*C"}
, it will simplify logic in a couple of places.While doing this refactor, one should also find all the occurences of
split_equation
and see if it makes sense to refactor them as well.The text was updated successfully, but these errors were encountered: