Releases: blutorange/js-incremental-cycle-detect
Releases · blutorange/js-incremental-cycle-detect
Version 0.2.2
0.2.2
- Added two methods for accessing edge data of incoming / outgoing edges:
getEdgeDataFrom
,getEdgeDataTo
- Added a method for checking whether an edge can be added:
canAddEdge
.
0.2.1
- Fixed typings for typescript.
v0.2.0
Change log
I use the following keywords:
Added
A new feature that is backwards-compatible.Changed
A change that is not backwards-compatible.Fixed
A bug or error that was fixed.
From newest to oldest:
0.2.0
- Added the method
getOrder
to the graph adapters. It allows you to access the topological order of each vertex. - Added a
MultiGraphAdapter
data structure that allows for multiple edges between two vertices. - Changed
GenericGraphAdapter
, it now only allows for one kind of edge data to be compatible with theCommonAdapter
interface. You can use objects if you need to store more data. - Added more test cases for the
MultiGraphAdapter
and fixed some bugs, updated dependencies.
0.1.1
- 0.1.1 Fixed package.json and dependencies (was missing tslib).