All Projects → Encapsule-Annex → jsgraph

Encapsule-Annex / jsgraph

Licence: MIT license
Deprecated: Use the @encapsule/arccore package that includes the graph library

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to jsgraph

Traverser
Traverser is a Java library that helps software engineers implement advanced iteration of a data structure.
Stars: ✭ 45 (+7.14%)
Mutual labels:  graph-algorithms, breadth-first-search, depth-first-search
Graph
Graph algorithms and data structures
Stars: ✭ 431 (+926.19%)
Mutual labels:  graph-algorithms, graph-theory
everystreet
An algorithm finding #everystreet route on Open Street Map (OSMnx)
Stars: ✭ 43 (+2.38%)
Mutual labels:  graph-algorithms, graph-theory
pathfinding-visualizer
Website built using React Framework for visualizing Pathfinding and Maze Generation Algorithms.
Stars: ✭ 33 (-21.43%)
Mutual labels:  breadth-first-search, depth-first-search
django-postgresql-dag
Directed Acyclic Graphs with a variety of methods for both Nodes and Edges, and multiple exports (NetworkX, Pandas, etc). This project is the foundation for a commercial product, so expect regular improvements. PR's and other contributions are welcomed.
Stars: ✭ 23 (-45.24%)
Mutual labels:  graph-algorithms, directed-graph
LightGraphs.jl
An optimized graphs package for the Julia programming language
Stars: ✭ 680 (+1519.05%)
Mutual labels:  graph-algorithms, graph-theory
Modal logic
Final Year Masters Project: modal logic solver tableaux
Stars: ✭ 16 (-61.9%)
Mutual labels:  graph-algorithms, graph-theory
Graph-Algorithms
Everything you need to know about graph theory to ace a technical interview 🔥
Stars: ✭ 87 (+107.14%)
Mutual labels:  graph-algorithms, graph-theory
D3graphtheory
💥 Interactive and colorful 🎨 graph theory tutorials made using d3.js ⚡️
Stars: ✭ 1,364 (+3147.62%)
Mutual labels:  graph-algorithms, graph-theory
Grafatko
An app for creating and visualizing graphs and graph-related algorithms.
Stars: ✭ 22 (-47.62%)
Mutual labels:  graph-algorithms, graph-theory
graphs
Graph algorithms written in Go
Stars: ✭ 60 (+42.86%)
Mutual labels:  graph-algorithms, graph-theory
lua-graph
Graph algorithms in lua
Stars: ✭ 57 (+35.71%)
Mutual labels:  breadth-first-search, depth-first-search
grblas
Python wrapper around GraphBLAS
Stars: ✭ 22 (-47.62%)
Mutual labels:  graph-algorithms, graph-theory
Graphs.jl
An optimized graphs package for the Julia programming language
Stars: ✭ 197 (+369.05%)
Mutual labels:  graph-algorithms, graph-theory
Libgrape Lite
🍇 A C++ library for parallel graph processing 🍇
Stars: ✭ 169 (+302.38%)
Mutual labels:  graph-algorithms, graph-theory
Lightgraphs.jl
An optimized graphs package for the Julia programming language
Stars: ✭ 611 (+1354.76%)
Mutual labels:  graph-algorithms, graph-theory
Differentia.js
No longer being supported or maintained. A Graph Theory & Data Structure Library for JavaScript.
Stars: ✭ 13 (-69.05%)
Mutual labels:  graph-algorithms, graph-theory
kaliningraph
🕸️ Graphs, finite fields and discrete dynamical systems in Kotlin
Stars: ✭ 62 (+47.62%)
Mutual labels:  graph-algorithms, graph-theory
Networkx
Network Analysis in Python
Stars: ✭ 10,057 (+23845.24%)
Mutual labels:  graph-algorithms, graph-theory
Erdos
modular and modern graph-theory algorithms framework in Java
Stars: ✭ 104 (+147.62%)
Mutual labels:  graph-algorithms, graph-theory

Encapsule Project Encapsule Project: GitHub / Twitter

Exploration of declarative programming with data models and graph theory using JavaScript, Node.js, and HTML5.

Encapsule/jsgraph v0.7.1

Build Status

"Begin at the beginning," the King said very gravely. "and go on till you come to the end: then stop." - Lewis Carroll, Alice in Wonderland

See also: Mathematical Graph Theory

NEW DOCS for the v0.7.1 release: ARCcore.graph

About

This is a data modeling and algorithms library. It does not draw graphs in your browser!

Encapsule/jsgraph (aka ARCcore.graph) is a JavaScript library for storing and processing in-memory directed graph data sets inspired by Jeremy Siek's work on the Boost C++ Graph Library (BGL). The library is not a complete port of the BGL but does provide a very useful subset its functionality that is useful for building data-driven JavaScript applications.

Briefly, jsgraph library provides:

Packaging

Encapsule/jsgraph is a stand-alone JavaScript library that may be used directly in Node.js applications. Or in the browser via webpack.

The library is also distributed as part of the Encapsule/ARCcore package that contains a number of other libraries for modeling and processing complex in-memory data in JavaScript applications that some of you may find interesting and useful.

Contributing

This library is used in production applications. And, in ridiculous derived science projects. So, the bar is pretty high for taking changes (particularly breaking changes). And, PR's need to come with tests! Exceptions made on a case-by-case basis for nice people and important projects with wide benefit.

Release Notes

v0.7.1 is a maintenance release

  • Encapsule/jsgraph sources are now officially part of the Encapsule/ARCcore package.
  • Travis CI updated for Node.js v6.10.x LTS and v7.9.0 current releases. Older builds dropped.
  • Fixed a single test break caused by latest Node.js increasing verbosity of JSON parse error to include character position of failure.
  • Documentation has been revised and is now available on the Encapsule Project website: ARCcore.graph.

v0.7 is a breaking API change and documentation release

  • Added new method DirectedGraph.stringify
  • Changed method semantics of DirectedGraph.toJSON to return a serializable object instead of a JSON-encoded string.
  • Alias method DirectedGraph.toObject to call DirectedGraph.toJSON. The toObject method is now deprecated and will be removed in a future release.
  • Updated documentation:
    • Per above breaking changes to the DirectedGraph serialization API.
    • Added additional information on set/get of DirectedGraph name and description properties.

v0.6 is a bug fix release that's API-compatible with v0.5

  • DFT algorithm bug fixes impacting order and identity of client visitor callbacks.
  • Better error handling on bad developer-supplied visitor interfaces.
  • Better error handling for BFT/DFT algorithm empty start vector case.
  • You can now set name and description string properties on a DirectedGraph:

v0.5 is a breaking upgrade for users of v0.4

  • Stylistic changes are required to v0.4 clients to upgrade.
  • No more exceptions. jsgraph now returns error/result response objects.
  • Breadth-first * algorithms coalesced into breadthFirstTraverse.
  • Depth-first * algorithms coalesced into depthFirstTraverse.
  • Algorithms now support early terminate under client control.
  • ~400 new tests added for v0.5 release.
  • Documentation and example updates.

Copyright © 2014-2017 Christopher D. Russell

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].