-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
#import all relevant contents from the associated module. | ||
from duality.objects.montecarlo import MonteCarlo | ||
from duality.objects.eoq import EOQ | ||
from duality.objects.dijkstra import Dijkstra | ||
from duality.cli import cli | ||
from duality.cli.cli import ( | ||
menu, | ||
dualityCLI, | ||
MonteCarloCLI, | ||
DijkstraCLI, | ||
EOQCLI, | ||
) | ||
|
||
#all relevant contents. | ||
__all__ = [ | ||
MonteCarlo, | ||
EOQ, | ||
Dijkstra, | ||
cli, | ||
menu, | ||
dualityCLI, | ||
MonteCarloCLI, | ||
DijkstraCLI, | ||
EOQCLI, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
|
||
] | ||
__license__ = 'Copyright © 2021- David Kundih. All rights reserved. Licensed under the Apache License, Version 2.0 | For more details about the license and terms of use visit the official duality documentation linked at https://github.com/dkundih/duality and https://pypi.org/project/duality' | ||
__version__ = '3.5.1' | ||
__version__ = '3.5.2' | ||
__documentation__ = 'https://github.com/dkundih/duality | https://pypi.org/project/duality' | ||
__contact__ = '[email protected] | [email protected]' | ||
__donate__ = 'https://patreon.com/dkundih | https://buymeacoffee.com/dkundih' |