Skip to content

Welcome to the GraphUtils.jl documentation. The purpose of this project is to provide an example package structure which can be easily copied and modified.

License

Notifications You must be signed in to change notification settings

sisl/GraphUtils.jl

Repository files navigation

CI pages-build-deployment Docs codecov

Welcome to the GraphUtils.jl documentation. The purpose of this project is to provide an example package structure which can be easily copied and modified. Please install this package first before running the TaskGraphs.jl package.

GraphUtils.jl

Installation:

git add https://github.com/sisl/GraphUtils.jl

Quick Start

To run a simple use case of topological sort.

using GraphUtils
using Graphs
G = DiGraph(4);
add_edge!(G,1,2);
add_edge!(G,1,4);
add_edge!(G,2,3);
add_edge!(G,3,4);
ordering = GraphUtils.topological_sort(G);
ordering == [1,2,3,4]

About

Welcome to the GraphUtils.jl documentation. The purpose of this project is to provide an example package structure which can be easily copied and modified.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages