Skip to content

Commit 7e8f48e

Browse files
author
aureooms
committed
explanation
1 parent 109386e commit 7e8f48e

File tree

1 file changed

+8
-2
lines changed
  • js/src/001 undirected/online/data

1 file changed

+8
-2
lines changed

js/src/001 undirected/online/data/fuse.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
1+
/**
2+
* Fuse multiple graph data structure allowing to
3+
* repeat the same write operations on all of them.
4+
* Adds a pt member to all edges and vertices of each
5+
* graph allowing direct reference of twin edges and
6+
* vertices in other fused graphs.
7+
*/
28

39
var fuse_t = function(){
410

@@ -55,4 +61,4 @@ var fuse_t = function(){
5561

5662
};
5763

58-
exports.fuse_t = fuse_t;
64+
exports.fuse_t = fuse_t;

0 commit comments

Comments
 (0)