Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ab76e8e

Browse filesBrowse files
committed
minor
1 parent 84a9223 commit ab76e8e
Copy full SHA for ab76e8e

16 files changed

+22-22Lines changed: 22 additions & 22 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎algorithm/etc/dp/fibonacci/data.js‎

Copy file name to clipboardExpand all lines: algorithm/etc/dp/fibonacci/data.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ var D = [1, 1];
44
for (var i = 2; i < index; i++) {
55
D.push(0);
66
}
7-
tracer.setData(D);
7+
tracer._setData(D);
Collapse file

‎algorithm/etc/dp/max_sum_path/data.js‎

Copy file name to clipboardExpand all lines: algorithm/etc/dp/max_sum_path/data.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ for (var i = 0; i < D.length; i++) {
77
DP[i].push(999);
88
}
99
}
10-
tracer.setData(DP);
10+
tracer._setData(DP);
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
var tracer = new Array1DTracer();
22
var D = Array1D.createRandomData(20, -5, 5);
3-
tracer.setData(D);
3+
tracer._setData(D);
Collapse file

‎algorithm/graph_search/bfs/shortest_path/data.js‎

Copy file name to clipboardExpand all lines: algorithm/graph_search/bfs/shortest_path/data.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ var tracer = new WeightedGraphTracer();
66
[0, 2, 0, 0, 1],
77
[0, 1, 3, 0, 0]
88
];*/
9-
var G = tracer.createRandomData(10, .3, 1, 9);
10-
tracer.setData(G);
9+
var G = WeightedGraph.createRandomData(10, .3, 1, 9);
10+
tracer._setData(G);
Collapse file

‎algorithm/graph_search/dfs/all_paths/data.js‎

Copy file name to clipboardExpand all lines: algorithm/graph_search/dfs/all_paths/data.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ var tracer = new GraphTracer();
77
[0, 0, 0, 0, 0]
88
];*/
99
var G = Graph.createRandomData(5, .75);
10-
tracer.setData(G);
10+
tracer._setData(G);
Collapse file

‎algorithm/graph_search/dfs/shortest_path/data.js‎

Copy file name to clipboardExpand all lines: algorithm/graph_search/dfs/shortest_path/data.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ var tracer = new WeightedGraphTracer();
77
[0, 1, 3, 0, 0]
88
];*/
99
var G = WeightedGraph.createRandomData(10, .3, 1, 9);
10-
tracer.setData(G);
10+
tracer._setData(G);
Collapse file

‎algorithm/graph_search/dfs/weighted_graph/data.js‎

Copy file name to clipboardExpand all lines: algorithm/graph_search/dfs/weighted_graph/data.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ var tracer = new WeightedGraphTracer();
77
[0, 1, 3, 0, 0]
88
];*/
99
var G = WeightedGraph.createRandomData(5, .5);
10-
tracer.setData(G);
10+
tracer._setData(G);
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
var tracer = new Array1DTracer();
22
var D = Array1D.createRandomData(15);
3-
tracer.setData(D);
3+
tracer._setData(D);
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
var tracer = new Array1DTracer();
22
var D = Array1D.createRandomData(15);
3-
tracer.setData(D);
3+
tracer._setData(D);
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
var tracer = new Array1DTracer();
22
var D = Array1D.createRandomData(15);
3-
tracer.setData(D);
3+
tracer._setData(D);

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.