All of the solvers accept the following parameters prograde=True and low_path=True at the moment. However, it would be more convenient to rename those as is_prograde=True and is_low_path=True. These lead to the following type of workflow:
if is_prograde ...
if is_low_path ...
which is much more readable than the actual names being used.
💻 Feature request: rename boolean parameters
All of the solvers accept the following parameters
prograde=True
andlow_path=True
at the moment. However, it would be more convenient to rename those asis_prograde=True
andis_low_path=True
. These lead to the following type of workflow:which is much more readable than the actual names being used.