jorgepiloto/lamberthub

Rename boolean parameters

jorgepiloto opened this issue · 0 comments

💻 Feature request: rename boolean parameters

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.