From 7e8f48e55da85aa925b10b90cccf0d3d356207d4 Mon Sep 17 00:00:00 2001 From: aureooms Date: Sun, 8 Jun 2014 12:48:56 +0200 Subject: [PATCH] explanation --- js/src/001 undirected/online/data/fuse.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/js/src/001 undirected/online/data/fuse.js b/js/src/001 undirected/online/data/fuse.js index 188b8fd..65f7803 100644 --- a/js/src/001 undirected/online/data/fuse.js +++ b/js/src/001 undirected/online/data/fuse.js @@ -1,4 +1,10 @@ - +/** + * Fuse multiple graph data structure allowing to + * repeat the same write operations on all of them. + * Adds a pt member to all edges and vertices of each + * graph allowing direct reference of twin edges and + * vertices in other fused graphs. + */ var fuse_t = function(){ @@ -55,4 +61,4 @@ var fuse_t = function(){ }; -exports.fuse_t = fuse_t; \ No newline at end of file +exports.fuse_t = fuse_t;