Skip to content

Releases: datavis-tech/graph-data-structure

Error handling in Shortest Path Algorithm

12 Mar 09:52
Compare
Choose a tag to compare

Browser build

12 Mar 09:52
Compare
Choose a tag to compare
v1.4.0

1.4.0

Dikjstra's algorithm

09 Mar 11:22
Compare
Choose a tag to compare

Implement Dikjstra's algorithm #16

Edge Weights

16 Aug 14:42
Compare
Choose a tag to compare

This release adds edge weights.

indegree & outdegree

25 May 10:50
Compare
Choose a tag to compare

This release adds two functions, indegree & outdegree.

See #11

New Serialized Format

25 May 09:14
Compare
Choose a tag to compare

Serialized graphs now look like this:

{
  "nodes": [
    { "id": "a" },
    { "id": "b" },
    { "id": "c" }
  ],
  "links": [
    { "source": "a", "target": "b" },
    { "source": "b", "target": "c" }
  ]
}

See #9

Serialization

18 May 12:19
Compare
Choose a tag to compare
  • Add serialize and deserialize functions
  • Transfer ownership to datavis-tech