-
Notifications
You must be signed in to change notification settings - Fork 0
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
25 changed files
with
1,741 additions
and
723 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
""" | ||
This is an internal module which contains the implementations of the more involved | ||
algorithms related to `SuccessionDiagram` construction and manipulation. The idea | ||
is that any implementation that requires some helper methods or data structures | ||
should be present here instead of `SuccessionDiagram.py` to avoid mixing of code | ||
used by different algorithms and bloating the core succession diagram implementation. | ||
This is an internal module which contains the implementations of the more | ||
involved algorithms related to `SuccessionDiagram` construction and | ||
manipulation. The idea is that any implementation that requires some helper | ||
methods or data structures should be present here instead of | ||
`SuccessionDiagram.py` to avoid mixing of code used by different algorithms and | ||
bloating the core succession diagram implementation. | ||
The algorithms within this module here should only use the public API of | ||
the `SuccessionDiagram` to avoid violating its invariants. The actual algorithms | ||
are then "re-exported" as a public methods of the `SuccessionDiagram` class. | ||
""" | ||
The algorithms within this module here should only use the public API of the | ||
`SuccessionDiagram` to avoid violating its invariants. The actual algorithms are | ||
then "re-exported" as a public methods of the `SuccessionDiagram` class. | ||
""" |
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
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
Oops, something went wrong.
45269e0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage Report