Jump to content

Continued fraction/Arithmetic/G(matrix ng, continued fraction n1, continued fraction n2): Difference between revisions

Line 2,393:
private Index ix;
private Index iy;
private bool overflowxoverflow;
private bool yoverflow;
 
//
Line 2,410 ⟶ 2,411:
ix = 0;
iy = 0;
overflowxoverflow = false;
yoverflow = false;
}
 
Line 2,479 ⟶ 2,481:
{
Nullable!Term term;
if (!overflowxoverflow)
term = x[ix];
ix += 1;
Line 2,497 ⟶ 2,499:
ng = new NG8 (ng.a12, ng.a1, ng.a12, ng.a1,
ng.b12, ng.b1, ng.b12, ng.b1);
overflowxoverflow = true;
}
}
Line 2,508 ⟶ 2,510:
{
Nullable!Term term;
if (!overflowyoverflow)
term = y[iy];
iy += 1;
Line 2,524 ⟶ 2,526:
ng = new NG8 (ng.a12, ng.a12, ng.a2, ng.a2,
ng.b12, ng.b12, ng.b2, ng.b2);
overflowyoverflow = true;
}
}
1,448

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.