Beispiel #1
0
 private void Reduce(MutableInteger t)
 {
     t.MontgomerySOS(nRep, k0);
     if (t >= nRep)
     {
         t.Subtract(nRep);
     }
     Debug.Assert(t < nRep);
 }