YoushouldhavereceivedcopiesoftheGNUGeneralPublicLicenseandthe GNULesserGeneralPublicLicensealongwiththeGNUMPLibrary.Ifnot,
see https://www.gnu.org/licenses/. */
/* Copy denominator to temporary space if it overlaps with the quotient. */ if (dp == qp)
{
mp_ptr tp;
tp = TMP_ALLOC_LIMBS (dl);
MPN_COPY (tp, dp, dl);
dp = tp;
}
tp = TMP_ALLOC_LIMBS (nl + 1);
np = PTR (num); /* Copy numerator to temporary space if it overlaps with the quotient. */ if (np == qp)
{
MPN_COPY (tp, np, nl); /* Overlap dividend and scratch. */
np = tp;
}
mpn_div_q (qp, np, nl, dp, dl, tp);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.