aureooms/js-integer-big-endian

View on GitHub

Showing 89 of 93 total issues

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_21 has 10 arguments (exceeds 4 allowed). Consider refactoring.
    Open

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

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

      export default function _karatsuba(r, a, ai, aj, b, bi, bj, c, ci, cj) {
      Severity: Major
      Found in src/core/arithmetic/mul/_karatsuba.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 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 _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_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/api/arithmetic/add/add.js - About 1 hr to fix

                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_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_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_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

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

                                size_small_block,
                                f,
                                t,
                                a,
                                ai,
                            Severity: Major
                            Found in src/core/convert/_convert_dc.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_dc_32 has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                  export default function _idivmod_dc_32(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/div/_idivmod_dc_32.js - About 1 hr to fix

                                    Function _mul_limb has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                    export default function _mul_limb(r, x, b, bi, bj, c, ci, cj) {
                                        assert(r >= 2);
                                        assert(x >= 0 && x <= r - 1);
                                        assert(bi >= 0 && bj <= b.length);
                                        assert(ci >= 0 && cj <= c.length);
                                    Severity: Minor
                                    Found in src/core/arithmetic/mul/_mul_limb.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_slow has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                    export default function _convert_to_smaller_slow(f, t, a, ai, aj, b, bi, bj) {
                                        assert(f >= t);
                                        assert(ai >= 0 && aj <= a.length);
                                        assert(bi >= 0 && bj <= b.length);
                                        assert(aj - ai >= 1);
                                    Severity: Minor
                                    Found in src/core/convert/_convert_to_smaller_slow.js - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language