3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

remove apostrophe, issue #582

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-05-03 07:20:20 -07:00
parent 67e49b4adc
commit e375be767d

View file

@ -1231,9 +1231,9 @@ void mpf_manager::rem(mpf const & x, mpf const & y, mpf & o) {
else if (is_zero(x))
set(o, x);
else {
// This is a generalized version of the algorithm for FPREM1 in the `Intel
// This is a generalized version of the algorithm for FPREM1 in the Intel
// 64 and IA-32 Architectures Software Developers Manual',
// Section 3-402 Vol. 2A `FPREM1-Partial Remainder'.
// Section 3-402 Vol. 2A FPREM1-Partial Remainder'.
scoped_mpf ST0(*this), ST1(*this);
set(ST0, x);
set(ST1, y);