Showing 93 of 93 total issues
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);
- Read upRead up
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 _idivmod
has 10 arguments (exceeds 4 allowed). Consider refactoring. Open
export default function _idivmod(r, D, Di, Dj, d, di, dj, Q, Qi, Qj) {
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) {
Function _idivmod_dc
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
export default function _idivmod_dc(X, a, ai, aj, b, bi, bj, c, ci, cj) {
assert(X >= 2);
assert(ai >= 0 && aj <= a.length);
assert(bi >= 0 && bj <= b.length);
assert(ci >= 0 && cj <= c.length);
- Read upRead up
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 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);
- Read upRead up
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 _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) {
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) {
Function _imod
has 10 arguments (exceeds 4 allowed). Consider refactoring. Open
export default function _imod(r, D, Di, Dj, d, di, dj, _, _i, _j) {
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) {
Function _karatsuba_right_op_is_small
has 10 arguments (exceeds 4 allowed). Consider refactoring. Open
r,
a,
ai,
aj,
b,
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) {
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) {
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);
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);
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) {
Function _idivmod_schoolbook_subroutine
has 9 arguments (exceeds 4 allowed). Consider refactoring. Open
r,
a,
ai,
aj,
b,
Function _idivmod_schoolbook_subroutine_do
has 9 arguments (exceeds 4 allowed). Consider refactoring. Open
r,
a,
ai,
aj,
b,
Function _convert_dc
has 9 arguments (exceeds 4 allowed). Consider refactoring. Open
size_small_block,
f,
t,
a,
ai,
Function _extended_euclidean_algorithm_loop
has 9 arguments (exceeds 4 allowed). Consider refactoring. Open
r,
R0,
R1,
S0,
T0,
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) {