-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from CurricularAnalytics/development
Version 0.5.2
- Loading branch information
Showing
31 changed files
with
684 additions
and
2,897 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "CurricularAnalytics" | ||
uuid = "593ffa3d-269e-5d81-88bc-c3b6809c35a6" | ||
authors = ["Greg Heileman <[email protected]>", "Hayden Free <[email protected]>", "Orhan Abar <[email protected]>", "Will Thompson <[email protected]>"] | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
|
||
[deps] | ||
Blink = "ad839575-38b3-5650-b840-f874b8c74a25" | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Graph Algorithms | ||
|
||
This toolbox makes use of a number of the graph algorithms provided in the [LightGraphs](https://juliagraphs.github.io/LightGraphs.jl/latest/index.html) package. In addition, we have implemented a number of graph algorithms that you may find useful when developing analytics around curriculum graphs. The functions implementing these algorithms are described next. | ||
|
||
```@docs | ||
dfs | ||
gad | ||
all_paths | ||
longest_path | ||
reachable_from | ||
reachable_from_subgraph | ||
reachable_to | ||
reachable_to_subgraph | ||
reach | ||
reach_subgraph | ||
topological_sort | ||
``` |
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.