Skip to content

Commit b696f3d

Browse files
Merge pull request #25 from TimothyGillespie/TimothyGillespie/add-weighted-edges
Timothy gillespie/add weighted edges
2 parents 02bac65 + b139446 commit b696f3d

23 files changed

+12660
-12598
lines changed

.prettierrc

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
2-
"printWidth": 120,
3-
"useTabs": true,
4-
"tabWidth": 4,
5-
"trailingComma": "all",
6-
"singleQuote": true
2+
"printWidth": 120,
3+
"tabWidth": 4,
4+
"trailingComma": "es5",
5+
"singleQuote": true
76
}

changelog.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Bug Fixes
44

5-
- Fixed a bug in AdjacencyList where it was never updated when vertices where put as adjacent.
5+
- Fixed a bug in AdjacencyList where it was never updated when vertices where put as adjacent.
66

77
# Version 0.4.x
88

@@ -12,21 +12,19 @@ No actual changes. Used for tuning publishing process
1212

1313
## New Features
1414

15-
- added `getAttachedEdges(vertex: V)` method on `Graph`
16-
- added `getOutgoingEdges(vertex: V)` method on `Graph`
17-
- added `getIncomingEdges(vertex: V)` method on `Graph`
18-
15+
- added `getAttachedEdges(vertex: V)` method on `Graph`
16+
- added `getOutgoingEdges(vertex: V)` method on `Graph`
17+
- added `getIncomingEdges(vertex: V)` method on `Graph`
1918

2019
# Version 0.3.1
2120

2221
## Improvements
2322

24-
- reduce package size significantly using lodash only for cloneDeep
25-
23+
- reduce package size significantly using lodash only for cloneDeep
2624

2725
# Version 0.3.0
2826

2927
## New Features
3028

31-
- added `deleteVertex(...vertex: V[])` methode on `Graph`
32-
- added `deleteEdge(...edge: E[])` methode on `Graph`
29+
- added `deleteVertex(...vertex: V[])` methode on `Graph`
30+
- added `deleteEdge(...edge: E[])` methode on `Graph`

0 commit comments

Comments
 (0)