Comments cleaned up

This commit is contained in:
Alex Dyachenko 2015-12-22 15:43:35 -05:00
parent 97a8cc896d
commit 7f148ac675
2 changed files with 3 additions and 3 deletions

View File

@ -256,7 +256,7 @@ namespace MPIR
/// to be more likely to trigger corner-case bugs. /// to be more likely to trigger corner-case bugs.
/// </para>As with all expressions, the result is not computed until the expression is assigned to the Value property or consumed by a method. /// </para>As with all expressions, the result is not computed until the expression is assigned to the Value property or consumed by a method.
/// </summary> /// </summary>
/// <param name="maxExponent">The maximum absolute value for the exponent of the generated number. Generated exponent may be positive or negative.</param> /// <param name="maxExponent">The maximum absolute value for the exponent of the generated number (expressed in limbs). Generated exponent may be positive or negative.</param>
/// <returns>An expression object that, when assigned to the Value property or consumed by a primitive-returning method, generates the random number</returns> /// <returns>An expression object that, when assigned to the Value property or consumed by a primitive-returning method, generates the random number</returns>
FloatExpression^ GetFloatChunky(mp_exp_t maxExponent); FloatExpression^ GetFloatChunky(mp_exp_t maxExponent);
@ -268,7 +268,7 @@ namespace MPIR
/// </summary> /// </summary>
/// <param name="limbCount">number of mantissa limbs to generate. /// <param name="limbCount">number of mantissa limbs to generate.
/// <para>The sign of this parameter determines the sign of the generated mantissa.</para></param> /// <para>The sign of this parameter determines the sign of the generated mantissa.</para></param>
/// <param name="maxExponent">The maximum absolute value for the exponent of the generated number. Generated exponent may be positive or negative.</param> /// <param name="maxExponent">The maximum absolute value for the exponent of the generated number (expressed in limbs). Generated exponent may be positive or negative.</param>
/// <returns>An expression object that, when assigned to the Value property or consumed by a primitive-returning method, generates the random number</returns> /// <returns>An expression object that, when assigned to the Value property or consumed by a primitive-returning method, generates the random number</returns>
FloatExpression^ GetFloatLimbsChunky(mp_size_t limbCount, mp_exp_t maxExponent); FloatExpression^ GetFloatLimbsChunky(mp_size_t limbCount, mp_exp_t maxExponent);

View File

@ -45,8 +45,8 @@ namespace MPIR
MP(rrandomb)(destination, Left->_value, BITS_TO_LIMBS(MP(get_prec)(destination)), Right); MP(rrandomb)(destination, Left->_value, BITS_TO_LIMBS(MP(get_prec)(destination)), Right);
} }
//TODO investigate why exponent does not seem to be in the promised range
//TODO implement "precision of destination" for context ops //TODO implement "precision of destination" for context ops
//TODO investigate implementing raw IO for floats
DEFINE_ASSIGNMENT_PROLOG(RandomLimbsChunky) DEFINE_ASSIGNMENT_PROLOG(RandomLimbsChunky)
{ {