-
Notifications
You must be signed in to change notification settings - Fork 3
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
10 changed files
with
57 additions
and
97 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include brightest_path_lib/cost/reciprocal_transonic.py | ||
include brightest_path_lib/heuristic/euclidean_transonic.py | ||
include brightest_path_lib/heuristic/euclidean_transonic.py |
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,3 +1,5 @@ | ||
DO_TRANSONIC = False | ||
|
||
# __version__ = "1.0.27" | ||
# from ._version import __version__ | ||
from ._myVersion import __version__ |
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,3 +1,8 @@ | ||
from .cost import Cost | ||
from .reciprocal import Reciprocal | ||
from .reciprocal_transonic import ReciprocalTransonic | ||
|
||
DO_TRANSONIC = False | ||
if DO_TRANSONIC: | ||
from .reciprocal_transonic import ReciprocalTransonic | ||
else: | ||
from .reciprocal import Reciprocal as ReciprocalTransonic |
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,3 +1,13 @@ | ||
from .heuristic import Heuristic | ||
from .euclidean import Euclidean | ||
from .euclidean_transonic import EuclideanTransonic | ||
|
||
# 20240527, making a version to not use transonic | ||
# was this | ||
# from .euclidean_transonic import EuclideanTransonic | ||
from .euclidean import Euclidean as EuclideanTransonic | ||
|
||
DO_TRANSONIC = False | ||
if DO_TRANSONIC: | ||
from .reciprocal_transonic import EuclideanTransonic | ||
else: | ||
from .euclidean import Euclidean as EuclideanTransonic |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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