Skip to content

Commit 8f27ab2

Browse files
v1.0.4
1 parent d7a4f12 commit 8f27ab2

File tree

5 files changed

+34
-33
lines changed

5 files changed

+34
-33
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aureooms-js-gn",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "graphs and networks code bricks for JavaScript",
55
"homepage": "https://aureooms.github.io/js-gn",
66
"license": "AGPL-3.0",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"scripts": [
55
"js/dist/gn.js"
66
],
7-
"version": "1.0.3",
7+
"version": "1.0.4",
88
"description": "graphs and networks code bricks for JavaScript",
99
"main": "js/dist/gn.js",
1010
"license": "AGPL-3.0"

js/dist/gn.js

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
'use strict';
44

55

6-
/* js/src/001 undirected */
7-
/* js/src/001 undirected/offline */
8-
/* js/src/001 undirected/offline/algo */
9-
/* js/src/001 undirected/offline/algo/eulerian */
10-
/* js/src/001 undirected/offline/algo/eulerian/dup.js */
6+
/* js/src/undirected */
7+
/* js/src/undirected/offline */
8+
/* js/src/undirected/offline/algo */
9+
/* js/src/undirected/offline/algo/eulerian */
10+
/* js/src/undirected/offline/algo/eulerian/dup.js */
1111

1212

1313

@@ -41,7 +41,7 @@ var dup_t = function(){
4141

4242

4343
exports.dup_t = dup_t;
44-
/* js/src/001 undirected/offline/algo/eulerian/eventour.js */
44+
/* js/src/undirected/offline/algo/eulerian/eventour.js */
4545

4646

4747
var eventour_t = function () {
@@ -124,7 +124,7 @@ var eventour_t = function () {
124124

125125
exports.eventour_t = eventour_t;
126126

127-
/* js/src/001 undirected/offline/algo/eulerian/oddgraph.js */
127+
/* js/src/undirected/offline/algo/eulerian/oddgraph.js */
128128

129129

130130
var oddgraph_t = function(){
@@ -154,7 +154,7 @@ var oddgraph_t = function(){
154154
};
155155

156156
exports.oddgraph_t = oddgraph_t;
157-
/* js/src/001 undirected/offline/algo/eulerian/simplegraph.js */
157+
/* js/src/undirected/offline/algo/eulerian/simplegraph.js */
158158
//ajoute arretes de poids min et retire cycle
159159

160160

@@ -198,7 +198,7 @@ var simplegraph_t = function(){
198198
};
199199

200200
exports.simplegraph_t = simplegraph_t;
201-
/* js/src/001 undirected/offline/algo/eulerian/wblossom_n3.js */
201+
/* js/src/undirected/offline/algo/eulerian/wblossom_n3.js */
202202
// Adapted from http://jorisvr.nl/maximummatching.html
203203
// All credit for the implementation goes to Joris van Rantwijk [http://jorisvr.nl].
204204

@@ -1353,7 +1353,7 @@ var wblossom_n3_t = function (debug, CHECK_OPTIMUM, CHECK_DELTA) {
13531353

13541354

13551355
exports.wblossom_n3_t = wblossom_n3_t;
1356-
/* js/src/001 undirected/offline/algo/eulerian/wblossom_n4.js */
1356+
/* js/src/undirected/offline/algo/eulerian/wblossom_n4.js */
13571357
//
13581358
//
13591359
///**
@@ -1441,8 +1441,8 @@ exports.wblossom_n3_t = wblossom_n3_t;
14411441
//};
14421442
//
14431443
//exports.wblossom_n4_t = wblossom_n4_t;
1444-
/* js/src/001 undirected/offline/algo/sp */
1445-
/* js/src/001 undirected/offline/algo/sp/dijkstra.js */
1444+
/* js/src/undirected/offline/algo/sp */
1445+
/* js/src/undirected/offline/algo/sp/dijkstra.js */
14461446

14471447

14481448
/**
@@ -1508,7 +1508,7 @@ var dijkstra = function ( g, order, source, prev, dist, used, ref, left ) {
15081508

15091509
exports.dijkstra = dijkstra;
15101510

1511-
/* js/src/001 undirected/offline/algo/sp/floyd.js */
1511+
/* js/src/undirected/offline/algo/sp/floyd.js */
15121512

15131513

15141514
var floyd_t = function(){
@@ -1531,7 +1531,7 @@ var floyd_t = function(){
15311531
};
15321532

15331533
exports.floyd_t = floyd_t;
1534-
/* js/src/001 undirected/offline/algo/sp/sptreedfs.js */
1534+
/* js/src/undirected/offline/algo/sp/sptreedfs.js */
15351535

15361536

15371537
var sptreedfs_t = function(){
@@ -1563,8 +1563,8 @@ var sptreedfs_t = function(){
15631563
};
15641564

15651565
exports.sptreedfs_t = sptreedfs_t;
1566-
/* js/src/001 undirected/offline/algo/util */
1567-
/* js/src/001 undirected/offline/algo/util/amat.js */
1566+
/* js/src/undirected/offline/algo/util */
1567+
/* js/src/undirected/offline/algo/util/amat.js */
15681568

15691569

15701570
var amat_t = function(){
@@ -1584,7 +1584,7 @@ var amat_t = function(){
15841584
};
15851585

15861586
exports.amat_t = amat_t;
1587-
/* js/src/001 undirected/offline/algo/util/copy.js */
1587+
/* js/src/undirected/offline/algo/util/copy.js */
15881588

15891589

15901590
var copy_t = function(){
@@ -1607,7 +1607,7 @@ var copy_t = function(){
16071607
};
16081608

16091609
exports.copy_t = copy_t;
1610-
/* js/src/001 undirected/offline/algo/util/d2s.js */
1610+
/* js/src/undirected/offline/algo/util/d2s.js */
16111611

16121612

16131613
var d2s = function(g, h, V){
@@ -1625,7 +1625,7 @@ var d2s = function(g, h, V){
16251625
};
16261626

16271627
exports.d2s = d2s;
1628-
/* js/src/001 undirected/offline/algo/util/pmat.js */
1628+
/* js/src/undirected/offline/algo/util/pmat.js */
16291629

16301630

16311631
// var pmat_t = function(){
@@ -1645,7 +1645,7 @@ exports.d2s = d2s;
16451645
// };
16461646

16471647
// exports.pmat_t = pmat_t;
1648-
/* js/src/001 undirected/offline/algo/util/smat.js */
1648+
/* js/src/undirected/offline/algo/util/smat.js */
16491649

16501650

16511651
// var smat_t = function(){
@@ -1665,7 +1665,7 @@ exports.d2s = d2s;
16651665
// };
16661666

16671667
// exports.smat_t = smat_t;
1668-
/* js/src/001 undirected/offline/algo/util/sqmat.js */
1668+
/* js/src/undirected/offline/algo/util/sqmat.js */
16691669

16701670

16711671
var sqmat = function(d, n, v){
@@ -1682,9 +1682,9 @@ var sqmat = function(d, n, v){
16821682

16831683

16841684
exports.sqmat = sqmat;
1685-
/* js/src/001 undirected/online */
1686-
/* js/src/001 undirected/online/data */
1687-
/* js/src/001 undirected/online/data/dense.js */
1685+
/* js/src/undirected/online */
1686+
/* js/src/undirected/online/data */
1687+
/* js/src/undirected/online/data/dense.js */
16881688

16891689
var dense_graph_t = function(){
16901690

@@ -1736,7 +1736,7 @@ var dense_graph_t = function(){
17361736
this.pt[i][j][0] = u;
17371737
this.pt[i][j][1] = v;
17381738
this.pt[i][j][2] = w;
1739-
1739+
17401740
return this.pt[i][j];
17411741

17421742
};
@@ -1754,7 +1754,7 @@ var dense_graph_t = function(){
17541754
graph.prototype.vitr = function(fn){
17551755

17561756
for(var i = 0, len = this.ad.length; i < len; ++i){
1757-
1757+
17581758
if(fn.call(this, this.ad[i])) break;
17591759

17601760
}
@@ -1809,7 +1809,8 @@ var dense_graph_t = function(){
18091809
};
18101810

18111811
exports.dense_graph_t = dense_graph_t;
1812-
/* js/src/001 undirected/online/data/fuse.js */
1812+
1813+
/* js/src/undirected/online/data/fuse.js */
18131814
/**
18141815
* Fuse multiple graph data structure allowing to
18151816
* repeat the same write operations on all of them.
@@ -1875,7 +1876,7 @@ var fuse_t = function(){
18751876

18761877
exports.fuse_t = fuse_t;
18771878

1878-
/* js/src/001 undirected/online/data/gindex.js */
1879+
/* js/src/undirected/online/data/gindex.js */
18791880
/**
18801881
* Sparse graph wrapper indexing vertices allowing
18811882
* direct reference to a matrix (dense) structure.
@@ -1944,7 +1945,7 @@ var index_t = function(){
19441945

19451946
exports.index_t = index_t;
19461947

1947-
/* js/src/001 undirected/online/data/sparse.js */
1948+
/* js/src/undirected/online/data/sparse.js */
19481949

19491950
// TODO should take a linked list prototype as template parameter
19501951
// in order to simplify the implementation and allow better

js/dist/gn.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aureooms-js-gn",
33
"description": "graphs and networks code bricks for JavaScript",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"main": "js/dist/gn.js",
66
"dependencies": {},
77
"devDependencies": {

0 commit comments

Comments
 (0)