Commit 20d382a Jorge M.G
committed
1 parent 4b21218 commit 20d382a Copy full SHA for 20d382a
File tree 3 files changed +636
-3
lines changed
3 files changed +636
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ print([solver.__name__ for solver in ALL_SOLVERS])
33
33
At this moment, the following algorithms are available:
34
34
35
35
``` bash
36
- >>> [' gooding1990' , ' izzo2015' ]
36
+ >>> [' gooding1990' , ' arora2015 ' , ' izzo2015' ]
37
37
```
38
38
39
39
## How can I use a solver?
Original file line number Diff line number Diff line change 1
1
""" A collection of Lambert's problem solvers """
2
2
3
+ from lamberthub .universal_solvers .arora import arora2013
3
4
from lamberthub .universal_solvers .gooding import gooding1990
4
5
from lamberthub .universal_solvers .izzo import izzo2015
5
6
6
7
__version__ = "0.1.dev0"
7
8
8
- ALL_SOLVERS = [gooding1990 , izzo2015 ]
9
+ ALL_SOLVERS = [gooding1990 , arora2013 , izzo2015 ]
9
10
""" A list holding all lamberthub available solvers """
10
11
11
- ZERO_REV_SOLVERS = [gooding1990 , izzo2015 ]
12
+ ZERO_REV_SOLVERS = [gooding1990 , arora2013 , izzo2015 ]
12
13
""" A list holding all direct-revolution lamberthub solvers """
13
14
14
15
MULTI_REV_SOLVERS = [gooding1990 , izzo2015 ]
You can’t perform that action at this time.
0 commit comments