Function _make_rational_class
has 103 lines of code (exceeds 25 allowed). Consider refactoring.
export default function _make_rational_class(domain, default_display_base) {
const {
add,
sub,
mul,
Function from
has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
from(n, d = undefined, base = undefined) {
const Element = this.element;
if (n.constructor.prototype === Array.prototype) {
base = d;
Similar blocks of code found in 2 locations. Consider refactoring.
if (n.match('[\\.\\|]') !== null) {
if (base !== undefined)
throw new ValueError(
'RationalField#from: Third parameter makes no sense with fixed point input.',
);
Similar blocks of code found in 2 locations. Consider refactoring.
if (n.match('/') !== null) {
if (base !== undefined)
throw new ValueError(
'RationalField#from: Third parameter makes no sense with fraction input.',
);
domain
has 22 functions (exceeds 20 allowed). Consider refactoring.
const domain = {
name: 'ZZ',
add: (a, b) => a.add(b),
sub: (a, b) => a.sub(b),
mul: (a, b) => a.mul(b),
Function from
has 51 lines of code (exceeds 25 allowed). Consider refactoring.
from(n, d = undefined, base = undefined) {
const Element = this.element;
if (n.constructor.prototype === Array.prototype) {
base = d;
Similar blocks of code found in 3 locations. Consider refactoring.
add(other) {
const [a, b] = add(this.n, this.d, other.n, other.d);
const [c, d] = simplify(a, b);
return new Rational(c, d);
}
Similar blocks of code found in 3 locations. Consider refactoring.
mul(other) {
const [a, b] = mul(this.n, this.d, other.n, other.d);
const [c, d] = simplify(a, b);
return new Rational(c, d);
}
Similar blocks of code found in 3 locations. Consider refactoring.
sub(other) {
const [a, b] = sub(this.n, this.d, other.n, other.d);
const [c, d] = simplify(a, b);
return new Rational(c, d);
}
Function _make_methods
has 36 lines of code (exceeds 25 allowed). Consider refactoring.
export default function _make_methods(domain) {
const primefactors = new Map();
const factorize = __factorize__($2, iadd1, eq0, gt1, divmod);
const ufactors = (n) => {
if (!primefactors.has(n)) primefactors.set(n, new Set(factorize(n)));
Function _make_rational_class
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
export default function _make_rational_class(domain, default_display_base) {
const {
add,
sub,
mul,
Identical blocks of code found in 2 locations. Consider refactoring.
return {
add,
sub,
mul,
div,
Identical blocks of code found in 2 locations. Consider refactoring.
const {
add,
sub,
mul,
div,