You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several functions, where variables are declared, assigned a few lines later and not reassigned later on. E.g. the variable eps_t in refine_roots_newton:
Yeah, that was actually the question if the assignment should either move up to where the variables are declared or if the declaration might move down (keeping the position of the assignment untouched). A PR will follow shortly if all tests pass on my machine.
There are several functions, where variables are declared, assigned a few lines later and not reassigned later on. E.g. the variable
eps_t
inrefine_roots_newton
:Does it respect your style if refactored as follows?
The text was updated successfully, but these errors were encountered: