aureooms/js-maximum-matching

View on GitHub

Showing 35 of 35 total issues

Function blossom has a Cognitive Complexity of 375 (exceeds 5 allowed). Consider refactoring.
Open

export function blossom(CHECK_OPTIMUM, CHECK_DELTA) {
    // Check delta2/delta3 computation after every substage;
    // only works on integer weights, slows down the algorithm to O(n^4).
    if (CHECK_DELTA === undefined) CHECK_DELTA = false;

Severity: Minor
Found in src/core/blossom/blossom.js - About 1 wk to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function blossom has 563 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function blossom(CHECK_OPTIMUM, CHECK_DELTA) {
    // Check delta2/delta3 computation after every substage;
    // only works on integer weights, slows down the algorithm to O(n^4).
    if (CHECK_DELTA === undefined) CHECK_DELTA = false;

Severity: Major
Found in src/core/blossom/blossom.js - About 2 days to fix

    Function maxWeightMatching has 558 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        const maxWeightMatching = (edges, maxCardinality = false) => {
            // Vertices are numbered 0 .. (nvertex-1).
            // Non-trivial blossoms are numbered nvertex .. (2*nvertex-1)
            //
            // Edges are numbered 0 .. (nedge-1).
    Severity: Major
    Found in src/core/blossom/blossom.js - About 2 days to fix

      File blossom.js has 576 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import assert from 'assert';
      
      import {blossomEdges} from './blossomEdges.js';
      import {blossomLeaves} from './blossomLeaves.js';
      import {checkDelta2} from './checkDelta2.js';
      Severity: Major
      Found in src/core/blossom/blossom.js - About 1 day to fix

        Function checkDelta3 has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
        Open

        export const checkDelta3 = ({
            nvertex,
            edges,
            blossomparent,
            blossomchilds,
        Severity: Minor
        Found in src/core/blossom/checkDelta3.js - About 5 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function addBlossom has 102 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                const addBlossom = (base, k) => {
                    let v = edges[k][0];
                    let w = edges[k][1];
                    const bb = inblossom[base];
                    let bv = inblossom[v];
        Severity: Major
        Found in src/core/blossom/blossom.js - About 4 hrs to fix

          Function checkDelta2 has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
          Open

          export const checkDelta2 = ({
              nvertex,
              neighbend,
              label,
              endpoint,
          Severity: Minor
          Found in src/core/blossom/checkDelta2.js - About 3 hrs to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function verifyOptimum has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
          Open

          export const verifyOptimum = ({
              nvertex,
              edges,
              maxCardinality,
              nedge,
          Severity: Minor
          Found in src/core/blossom/verifyOptimum.js - About 3 hrs to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function expandBlossom has 78 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  const expandBlossom = (b, endstage) => {
                      console.debug(
                          'DEBUG: expandBlossom(' + b + ',' + endstage + ') ' + blossomchilds[b],
                      );
                      // Convert sub-blossoms into top-level blossoms.
          Severity: Major
          Found in src/core/blossom/blossom.js - About 3 hrs to fix

            Function augmentBlossom has 45 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    const augmentBlossom = (b, v) => {
                        console.debug('DEBUG: augmentBlossom(' + b + ',' + v + ')');
                        // Bubble up through the blossom tree from vertex v to an immediate
                        // sub-blossom of b.
                        let j;
            Severity: Minor
            Found in src/core/blossom/blossom.js - About 1 hr to fix

              Function scanBlossom has 30 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      const scanBlossom = (v, w) => {
                          console.debug('DEBUG: scanBlossom(' + v + ',' + w + ')');
                          // Trace back from v and w, placing breadcrumbs as we go.
                          const path = [];
                          let base = -1;
              Severity: Minor
              Found in src/core/blossom/blossom.js - About 1 hr to fix

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                                    checkDelta3({
                                        nvertex,
                                        edges,
                                        blossomparent,
                                        blossomchilds,
                Severity: Major
                Found in src/core/blossom/blossom.js and 1 other location - About 1 hr to fix
                src/core/blossom/blossom.js on lines 926..937

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 58.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                            verifyOptimum({
                                nvertex,
                                edges,
                                maxCardinality,
                                nedge,
                Severity: Major
                Found in src/core/blossom/blossom.js and 1 other location - About 1 hr to fix
                src/core/blossom/blossom.js on lines 782..793

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 58.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                export const checkDelta3 = ({
                    nvertex,
                    edges,
                    blossomparent,
                    blossomchilds,
                Severity: Minor
                Found in src/core/blossom/checkDelta3.js and 1 other location - About 55 mins to fix
                src/core/blossom/verifyOptimum.js on lines 6..82

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 53.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                export const verifyOptimum = ({
                    nvertex,
                    edges,
                    maxCardinality,
                    nedge,
                Severity: Minor
                Found in src/core/blossom/verifyOptimum.js and 1 other location - About 55 mins to fix
                src/core/blossom/checkDelta3.js on lines 6..56

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 53.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Avoid deeply nested control flow statements.
                Open

                                        if (deltatype === -1 || d < delta) {
                                            delta = d;
                                            deltatype = 2;
                                            deltaedge = bestedge[v];
                                        }
                Severity: Major
                Found in src/core/blossom/blossom.js - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                      if (inblossom[w] !== b && label[inblossom[w]] === 1) {
                                          const d = slack(k);
                                          if (bk === -1 || d < bd) {
                                              bk = k;
                                              bd = d;
                  Severity: Major
                  Found in src/core/blossom/checkDelta3.js - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                            if (inblossom[v] === inblossom[w]) {
                                                // This edge is internal to a blossom; ignore it
                                                continue;
                                            }
                    Severity: Major
                    Found in src/core/blossom/blossom.js - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                                              if (label[b] === 1) {
                                                  // Top-level S-blossom: z = z + 2*delta
                                                  dualvar[b] += delta;
                                              } else if (label[b] === 2) {
                                                  // Top-level T-blossom: z = z - 2*delta
                      Severity: Major
                      Found in src/core/blossom/blossom.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                            if (bk === -1 || d < bd) {
                                                bk = k;
                                                bd = d;
                                            }
                        Severity: Major
                        Found in src/core/blossom/checkDelta2.js - About 45 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language