We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb52212 commit 68cb34dCopy full SHA for 68cb34d
src/core/blossom/blossom.js
@@ -185,7 +185,7 @@ export default function blossom(CHECK_OPTIMUM, CHECK_DELTA) {
185
// Assign label t to the top-level blossom containing vertex w
186
// and record the fact that w was reached through the edge with
187
// remote endpoint p.
188
- const assignLabel = function (w, t, p) {
+ const assignLabel = (w, t, p) => {
189
console.debug('DEBUG: assignLabel(' + w + ',' + t + ',' + p + ')');
190
const b = inblossom[w];
191
assert(label[w] === 0 && label[b] === 0);
0 commit comments