Skip to content

Commit

Permalink
🔇
Browse files Browse the repository at this point in the history
  • Loading branch information
Catatomik committed Apr 14, 2021
1 parent 3675cea commit 5e7df93
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ function createEdges(G, sommets, plus_court, color) {
}
}
}
console.log(aretes)
let edges = new vis.DataSet(aretes);
return [aretes, edges];
}
Expand All @@ -175,7 +174,7 @@ function draw(nodes, edges, containerId) {
max: Math.max(...nodes.map(n => n.value)),
},
font: {
size: 12,
size: 16,
},
},
edges: {
Expand Down
2 changes: 0 additions & 2 deletions utils/parcours.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ function dijkstra(G, d, a) {
delete partielles[s]
}

console.log(totales)

let chemin = []
while (a != null) {
chemin = [a, ...chemin]
Expand Down

0 comments on commit 5e7df93

Please sign in to comment.