All Projects β†’ JuliaGraphs β†’ Lightgraphs.jl

JuliaGraphs / Lightgraphs.jl

Licence: other
An optimized graphs package for the Julia programming language

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Lightgraphs.jl

Grakn
TypeDB: a strongly-typed database
Stars: ✭ 2,947 (+382.32%)
Mutual labels:  graph, graph-algorithms, graph-theory
Libgrape Lite
πŸ‡ A C++ library for parallel graph processing πŸ‡
Stars: ✭ 169 (-72.34%)
Mutual labels:  graph, graph-algorithms, graph-theory
Swiftgraph
A Graph Data Structure in Pure Swift
Stars: ✭ 588 (-3.76%)
Mutual labels:  graph, graph-algorithms
Graphs.jl
An optimized graphs package for the Julia programming language
Stars: ✭ 197 (-67.76%)
Mutual labels:  graph-algorithms, graph-theory
Rgl
RGL is a framework for graph data structures and algorithms in Ruby.
Stars: ✭ 279 (-54.34%)
Mutual labels:  graph, graph-algorithms
Graph-Algorithms
Everything you need to know about graph theory to ace a technical interview πŸ”₯
Stars: ✭ 87 (-85.76%)
Mutual labels:  graph-algorithms, graph-theory
grblas
Python wrapper around GraphBLAS
Stars: ✭ 22 (-96.4%)
Mutual labels:  graph-algorithms, graph-theory
Javascript Datastructures Algorithms
πŸ“š collection of JavaScript and TypeScript data structures and algorithms for education purposes. Source code bundle of JavaScript algorithms and data structures book
Stars: ✭ 3,221 (+427.17%)
Mutual labels:  graph, graph-algorithms
jgrapht
Master repository for the JGraphT project
Stars: ✭ 2,259 (+269.72%)
Mutual labels:  graph-algorithms, graph-theory
Communities
Library of community detection algorithms and visualization tools
Stars: ✭ 348 (-43.04%)
Mutual labels:  graph, graph-algorithms
Vivagraphjs
Graph drawing library for JavaScript
Stars: ✭ 3,442 (+463.34%)
Mutual labels:  graph, graph-algorithms
Competitive coding
This repository contains some useful codes, techniques, algorithms and problem solutions helpful in Competitive Coding.
Stars: ✭ 393 (-35.68%)
Mutual labels:  graph, graph-algorithms
kaliningraph
πŸ•ΈοΈ Graphs, finite fields and discrete dynamical systems in Kotlin
Stars: ✭ 62 (-89.85%)
Mutual labels:  graph-algorithms, graph-theory
Differentia.js
No longer being supported or maintained. A Graph Theory & Data Structure Library for JavaScript.
Stars: ✭ 13 (-97.87%)
Mutual labels:  graph-algorithms, graph-theory
LightGraphs.jl
An optimized graphs package for the Julia programming language
Stars: ✭ 680 (+11.29%)
Mutual labels:  graph-algorithms, graph-theory
networkx-guide
We here are very big fans of NetworkX as a graph library and its comprehensive set of graph algorithms. For many though, working with NetworkX involves a steep learning curve. This guide is designed as an aid for beginners and experienced users to find specific tips and explore the world of complex networks.
Stars: ✭ 28 (-95.42%)
Mutual labels:  graph-algorithms, graph-theory
everystreet
An algorithm finding #everystreet route on Open Street Map (OSMnx)
Stars: ✭ 43 (-92.96%)
Mutual labels:  graph-algorithms, graph-theory
C Sharp Algorithms
πŸ“š πŸ“ˆ Plug-and-play class-library project of standard Data Structures and Algorithms in C#
Stars: ✭ 4,684 (+666.61%)
Mutual labels:  graph, graph-algorithms
graphs
Graph algorithms written in Go
Stars: ✭ 60 (-90.18%)
Mutual labels:  graph-algorithms, graph-theory
jsgraph
Deprecated: Use the @encapsule/arccore package that includes the graph library
Stars: ✭ 42 (-93.13%)
Mutual labels:  graph-algorithms, graph-theory

LightGraphs

Build Status codecov.io DOI

LightGraphs offers both (a) a set of simple, concrete graph implementations -- Graph (for undirected graphs) and DiGraph (for directed graphs), and (b) an API for the development of more sophisticated graph implementations under the AbstractGraph type.

The project goal is to mirror the functionality of robust network and graph analysis libraries such as NetworkX while being simpler to use and more efficient than existing Julian graph libraries such as Graphs.jl. It is an explicit design decision that any data not required for graph manipulation (attributes and other information, for example) is expected to be stored outside of the graph structure itself. Such data lends itself to storage in more traditional and better-optimized mechanisms.

Additional functionality may be found in a number of companion packages, including:

Documentation

Full documentation is available at GitHub Pages. Documentation for methods is also available via the Julia REPL help system. Additional tutorials can be found at JuliaGraphsTutorials.

Installation

Installation is straightforward: enter Pkg mode by hitting ], and then

(v1.0) pkg> add LightGraphs

Supported Versions

  • LightGraphs master is generally designed to work with the latest stable version of Julia (except during Julia version increments as we transition to the new version).
  • Julia 0.3: LightGraphs v0.3.7 is the last version guaranteed to work with Julia 0.3.
  • Julia 0.4: LightGraphs versions in the 0.6 series are designed to work with Julia 0.4.
  • Julia 0.5: LightGraphs versions in the 0.7 series are designed to work with Julia 0.5.
  • Julia 0.6: LightGraphs versions in the 0.8 through 0.12 series are designed to work with Julia 0.6.
  • Julia 0.7 / 1.0: LightGraphs versions in the 1.x series are designed to work with Julia 0.7 and Julia 1.0.
  • Later versions: Some functionality might not work with prerelease / unstable / nightly versions of Julia. If you run into a problem, please file an issue.

Contributing and Reporting Bugs

We welcome contributions and bug reports! Please see CONTRIBUTING.md for guidance on development and bug reporting.

Citing

We encourage you to cite our work if you have used our libraries, tools or datasets. Starring the repository on GitHub is also appreciated. See the Zenodo badge above or refer to CITATION.bib.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].