-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
74c7460
commit c216530
Showing
11 changed files
with
27 additions
and
27 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,4 +1,4 @@ | ||
name = "DAGs" | ||
name = "DirectedAcyclicGraphs" | ||
uuid = "1e6dae5e-d6e2-422d-9af3-452e7a3785ee" | ||
authors = ["Guy Van den Broeck <[email protected]>"] | ||
version = "0.1.0" | ||
|
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,5 +1,5 @@ | ||
# DAGs.jl | ||
# DirectedAcyclicGraphs.jl | ||
|
||
[![Unit Tests](https://github.com/Juice-jl/DAGs.jl/workflows/Unit%20Tests/badge.svg)](https://github.com/Juice-jl/DAGs.jl/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amain) [![codecov](https://codecov.io/gh/Juice-jl/DAGs.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/Juice-jl/DAGs.jl) [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juice-jl.github.io/DAGs.jl/dev/) | ||
[![Unit Tests](https://github.com/Juice-jl/DirectedAcyclicGraphs.jl/workflows/Unit%20Tests/badge.svg)](https://github.com/Juice-jl/DirectedAcyclicGraphs.jl/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amain) [![codecov](https://codecov.io/gh/Juice-jl/DirectedAcyclicGraphs.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/Juice-jl/DirectedAcyclicGraphs.jl) [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juice-jl.github.io/DirectedAcyclicGraphs.jl/dev/) | ||
|
||
Infrastructure to work with Directed Acyclic Graphs in Julia |
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,6 +1,6 @@ | ||
|
||
# [DAGs](@id api-internal-dags) | ||
# [DirectedAcyclicGraphs](@id api-internal-dags) | ||
|
||
```@autodocs | ||
Modules = [DAGs] | ||
Modules = [DirectedAcyclicGraphs] | ||
``` |
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,4 +1,4 @@ | ||
# DAGs.jl | ||
# DirectedAcyclicGraphs.jl | ||
|
||
This package provides tools to represent Directed Acyclic Graphs (DAGs), additionaly | ||
it includes common tasks that are relevant to DAGs, see the API section for me details. | ||
it includes common tasks that are relevant to DirectedAcyclicGraphs, see the API section for me details. |
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,4 +1,4 @@ | ||
module DAGs | ||
module DirectedAcyclicGraphs | ||
|
||
include("graphs.jl") | ||
include("trees.jl") | ||
|
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,4 +1,4 @@ | ||
[deps] | ||
DAGs = "1e6dae5e-d6e2-422d-9af3-452e7a3785ee" | ||
DirectedAcyclicGraphs = "1e6dae5e-d6e2-422d-9af3-452e7a3785ee" | ||
Jive = "ba5e3d4b-8524-549f-bc71-e76ad9e9deed" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
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,5 +1,5 @@ | ||
using Test | ||
using DAGs | ||
using DirectedAcyclicGraphs | ||
|
||
# TODO add similar tests for `Tree`s as `DAG`s | ||
|
||
|