lib/network/modules/KamadaKawai.js

Summary

Maintainability
B
5 hrs
Test Coverage

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

  _createE_matrix() {
    let nodesArray = this.body.nodeIndices;
    let nodes = this.body.nodes;
    this.E_matrix = {};
    this.E_sums = {};
Severity: Minor
Found in lib/network/modules/KamadaKawai.js - About 1 hr to fix

    Function _updateE_matrix has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      _updateE_matrix(m) {
        let nodesArray = this.body.nodeIndices;
        let nodes = this.body.nodes;
        let colm = this.E_matrix[m];
        let kcolm = this.K_matrix[m];
    Severity: Minor
    Found in lib/network/modules/KamadaKawai.js - About 1 hr to fix

      Function _moveNode has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        _moveNode(m, dE_dx, dE_dy) {
          let nodesArray = this.body.nodeIndices;
          let nodes = this.body.nodes;
          let d2E_dx2 = 0;
          let d2E_dxdy = 0;
      Severity: Minor
      Found in lib/network/modules/KamadaKawai.js - About 1 hr to fix

        Function _getHighestEnergyNode has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

          _getHighestEnergyNode(ignoreClusters) {
            let nodesArray = this.body.nodeIndices;
            let nodes = this.body.nodes;
            let maxEnergy = 0;
            let maxEnergyNodeId = nodesArray[0];
        Severity: Minor
        Found in lib/network/modules/KamadaKawai.js - About 55 mins 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 _createE_matrix has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          _createE_matrix() {
            let nodesArray = this.body.nodeIndices;
            let nodes = this.body.nodes;
            this.E_matrix = {};
            this.E_sums = {};
        Severity: Minor
        Found in lib/network/modules/KamadaKawai.js - About 35 mins 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

        There are no issues that match your filters.

        Category
        Status