arithmetic-operations-for/naturals-big-endian

View on GitHub

Showing 93 of 93 total issues

Function add has 10 arguments (exceeds 4 allowed). Consider refactoring.
Open

export default function add(r, a, ai, aj, b, bi, bj, c, ci, cj) {
Severity: Major
Found in src/api/arithmetic/add/add.js - About 1 hr to fix

    Function _schoolbook_mul has 10 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    export default function _schoolbook_mul(r, a, ai, aj, b, bi, bj, c, ci, cj) {
    Severity: Major
    Found in src/core/arithmetic/mul/_schoolbook_mul.js - About 1 hr to fix

      Function _idivmod_slow has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      export default function _idivmod_slow(x, r, ri, rj, b, bi, bj, q, qi) {
          assert(x >= 2);
          assert(ri >= 0 && rj <= r.length);
          assert(bi >= 0 && bj <= b.length);
          assert(qi >= 0);
      Severity: Minor
      Found in src/core/arithmetic/div/_idivmod_slow.js - About 1 hr 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 _add has 10 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      export default function _add(r, a, ai, aj, b, bi, bj, c, ci, cj) {
      Severity: Major
      Found in src/core/arithmetic/add/_add.js - About 1 hr to fix

        Function _idivmod_dc has 10 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        export default function _idivmod_dc(X, a, ai, aj, b, bi, bj, c, ci, cj) {
        Severity: Major
        Found in src/core/arithmetic/div/_idivmod_dc.js - About 1 hr to fix

          Function _idivmod has 10 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          export default function _idivmod(r, D, Di, Dj, d, di, dj, Q, Qi, Qj) {
          Severity: Major
          Found in src/api/arithmetic/div/_idivmod.js - About 1 hr to fix

            Function mul has 10 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            export default function mul(r, a, ai, aj, b, bi, bj, c, ci, cj) {
            Severity: Major
            Found in src/api/arithmetic/mul/mul.js - About 1 hr to fix

              Function _sub has 10 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              export default function _sub(r, a, ai, aj, b, bi, bj, c, ci, cj) {
              Severity: Major
              Found in src/core/arithmetic/sub/_sub.js - About 1 hr to fix

                Function _mul has 10 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                export default function _mul(r, a, ai, aj, b, bi, bj, c, ci, cj) {
                Severity: Major
                Found in src/core/arithmetic/mul/_mul.js - About 1 hr to fix

                  Function _karatsuba_right_op_is_small has 10 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      r,
                      a,
                      ai,
                      aj,
                      b,
                  Severity: Major
                  Found in src/core/arithmetic/mul/_karatsuba_right_op_is_small.js - About 1 hr to fix

                    Function _idivmod_dc_32 has 10 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                    export default function _idivmod_dc_32(r, a, ai, aj, b, bi, bj, c, ci, cj) {
                    Severity: Major
                    Found in src/core/arithmetic/div/_idivmod_dc_32.js - About 1 hr to fix

                      Function _add has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                      export default function _add(r, a, ai, aj, b, bi, bj, c, ci, cj) {
                          assert(r >= 2);
                          assert(ai >= 0 && aj <= a.length);
                          assert(bi >= 0 && bj <= b.length);
                          assert(ci >= 0 && cj <= c.length);
                      Severity: Minor
                      Found in src/core/arithmetic/add/_add.js - About 1 hr 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 _convert_to_smaller_fast has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      export default function _convert_to_smaller_fast(br, z, a, ai, aj, b, bi, bj) {
                          assert(br >= 2);
                          assert(ai >= 0 && aj <= a.length);
                          assert(bi >= 0 && bj <= b.length);
                          assert(aj - ai >= 0);
                      Severity: Minor
                      Found in src/core/convert/_convert_to_smaller_fast.js - About 1 hr to fix

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

                        export default function _convert_to_larger_fast(ar, z, a, ai, aj, b, bi, bj) {
                            assert(ar >= 2);
                            assert(ai >= 0 && aj <= a.length);
                            assert(bi >= 0 && bj <= b.length);
                            assert(aj - ai >= 0);
                        Severity: Minor
                        Found in src/core/convert/_convert_to_larger_fast.js - About 1 hr to fix

                          Function _extended_euclidean_algorithm_loop has 9 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              r,
                              R0,
                              R1,
                              S0,
                              T0,
                          Severity: Major
                          Found in src/core/arithmetic/gcd/_extended_euclidean_algorithm_loop.js - About 1 hr to fix

                            Function _idivmod_schoolbook_subroutine has 9 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                r,
                                a,
                                ai,
                                aj,
                                b,
                            Severity: Major
                            Found in src/core/arithmetic/div/_idivmod_schoolbook_subroutine.js - About 1 hr to fix

                              Function _idivmod_schoolbook_large_divisor has 9 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                                  r,
                                  a,
                                  ai,
                                  aj,
                                  b,
                              Severity: Major
                              Found in src/core/arithmetic/div/_idivmod_schoolbook_large_divisor.js - About 1 hr to fix

                                Function _idivmod_schoolbook has 9 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                export default function _idivmod_schoolbook(r, a, ai, aj, b, bi, bj, q, qi) {
                                Severity: Major
                                Found in src/core/arithmetic/div/_idivmod_schoolbook.js - About 1 hr to fix

                                  Function _idivmod_schoolbook_subroutine_do has 9 arguments (exceeds 4 allowed). Consider refactoring.
                                  Open

                                      r,
                                      a,
                                      ai,
                                      aj,
                                      b,
                                  Severity: Major
                                  Found in src/core/arithmetic/div/_idivmod_schoolbook_subroutine_do.js - About 1 hr to fix

                                    Function _idivmod_slow has 9 arguments (exceeds 4 allowed). Consider refactoring.
                                    Open

                                    export default function _idivmod_slow(x, r, ri, rj, b, bi, bj, q, qi) {
                                    Severity: Major
                                    Found in src/core/arithmetic/div/_idivmod_slow.js - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language