Skip to content
New issue

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

Add arora2013 solver #8

Merged
merged 3 commits into from
May 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ print([solver.__name__ for solver in ALL_SOLVERS])
At this moment, the following algorithms are available:

```bash
>>> ['gooding1990', 'izzo2015']
>>> ['gooding1990', 'arora2013', 'izzo2015']
```

## How can I use a solver?
Expand Down
5 changes: 3 additions & 2 deletions src/lamberthub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
""" A collection of Lambert's problem solvers """

from lamberthub.universal_solvers.arora import arora2013
from lamberthub.universal_solvers.gooding import gooding1990
from lamberthub.universal_solvers.izzo import izzo2015

__version__ = "0.1.dev0"

ALL_SOLVERS = [gooding1990, izzo2015]
ALL_SOLVERS = [gooding1990, arora2013, izzo2015]
""" A list holding all lamberthub available solvers """

ZERO_REV_SOLVERS = [gooding1990, izzo2015]
ZERO_REV_SOLVERS = [gooding1990, arora2013, izzo2015]
""" A list holding all direct-revolution lamberthub solvers """

MULTI_REV_SOLVERS = [gooding1990, izzo2015]
Expand Down
Loading