-
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 #23 from gdalle/master
Harmonize code and improve docs
- Loading branch information
Showing
18 changed files
with
599 additions
and
467 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,18 +1,19 @@ | ||
name = "MetaGraphsNext" | ||
uuid = "fa8bd995-216d-47f1-8a91-f3b68fbeb377" | ||
version = "0.2" | ||
version = "0.2.0" | ||
|
||
[deps] | ||
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" | ||
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" | ||
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" | ||
|
||
[compat] | ||
JLD2 = "0.1.11, 0.2, 0.3, 0.4" | ||
Graphs = "1.4.1" | ||
JLD2 = "0.1.11, 0.2, 0.3, 0.4" | ||
julia = "1" | ||
|
||
[extras] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Documenter"] | ||
test = ["Documenter", "Test"] |
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,10 +1,7 @@ | ||
# MetaGraphsNext | ||
|
||
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGraphs.github.io/MetaGraphsNext.jl/dev) | ||
[![Build Status](https://github.com/JuliaGraphs/MetaGraphsNext.jl/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/JuliaGraphs/MetaGraphsNext.jl/actions/workflows/test.yml?query=branch%3Amaster) | ||
[![CodeCov](https://codecov.io/gh/JuliaGraphs/MetaGraphsNext.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaGraphs/MetaGraphsNext.jl) | ||
|
||
Welcome to `MetaGraphsNext.jl`, an experimental, type-stable replacement for [MetaGraphs](https://github.com/JuliaGraphs/MetaGraphs.jl). | ||
|
||
## Getting started | ||
|
||
To see how the package works, take a look at the tutorial in the [documentation](https://juliagraphs.org/MetaGraphsNext.jl/dev/). We first explain [the basics](tutorial_basics.md) of the `MetaGraph` structure, before moving on to its [integration](tutorial_graphs.md) with `Graphs.jl`. | ||
Welcome to MetaGraphsNext, an experimental, type-stable replacement for [MetaGraphs](https://github.com/JuliaGraphs/MetaGraphs.jl). This package will let you store metadata on the vertices and edges of your graphs. Take a look at the [documentation](https://juliagraphs.org/MetaGraphsNext.jl/dev/) to learn more! |
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,3 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" |
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,42 +1,13 @@ | ||
# API reference | ||
|
||
## Basics | ||
## Docstrings | ||
|
||
```@autodocs | ||
Modules = [MetaGraphsNext] | ||
Pages = ["metagraph.jl"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [MetaGraphsNext] | ||
Pages = ["metaundigraph.jl", "metadigraph.jl"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [MetaGraphsNext] | ||
Pages = ["dict_utils.jl"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [MetaGraphsNext] | ||
Pages = ["weights.jl"] | ||
``` | ||
## Index | ||
|
||
## Graphs.jl interface | ||
|
||
```@autodocs | ||
Modules = [MetaGraphsNext] | ||
Pages = ["graphs.jl"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [MetaGraphsNext] | ||
Pages = ["overrides.jl"] | ||
``` | ||
|
||
## Reading / writing | ||
|
||
```@autodocs | ||
```@index | ||
Modules = [MetaGraphsNext] | ||
Pages = ["persistence.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
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.