mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-21 12:23:44 +00:00
Estimated hours taken: 0.5 library/int.m: Fix a bug in the definition of `div'. tests/hard_coded/division_test.m: Add some new regression tests for the above-mentioned bug.
84 lines
2.2 KiB
Mathematica
84 lines
2.2 KiB
Mathematica
% test the handling of `//', rem, div, and mod.
|
|
% the first pair should truncate towards zero.
|
|
% the second pair should truncate towards negative infinity.
|
|
|
|
:- module division_test.
|
|
:- interface.
|
|
:- import_module io.
|
|
|
|
:- pred main(io__state::di, io__state::uo) is det.
|
|
|
|
:- implementation.
|
|
:- import_module int.
|
|
|
|
main -->
|
|
(
|
|
{ quot_test(3, 8, 0, 3) }, % 3 / 8 = 0 + 3/8
|
|
{ quot_test(5, 8, 0, 5) }, % 5 / 8 = 0 + 5/8
|
|
{ quot_test(7, 2, 3, 1) }, % 7 / 2 = 3 + 1/2
|
|
{ quot_test(100, 13, 7, 9) } % 100 / 13 = 7 + 9/13
|
|
->
|
|
io__write_string("`//' test succeeded\n")
|
|
;
|
|
io__write_string("`//' test failed\n")
|
|
),
|
|
(
|
|
{ rem_test(3, 8, 0, 3) }, % 3 / 8 = 0 + 3/8
|
|
{ rem_test(5, 8, 0, 5) }, % 5 / 8 = 0 + 5/8
|
|
{ rem_test(7, 2, 3, 1) }, % 7 / 2 = 3 + 1/2
|
|
{ rem_test(100, 13, 7, 9) } % 100 / 13 = 7 + 9/13
|
|
->
|
|
io__write_string("rem test succeeded\n")
|
|
;
|
|
io__write_string("rem test failed\n")
|
|
),
|
|
(
|
|
{ div_test(3, 8, 0, 3) }, % 3 / 8 = 0 + 3/8
|
|
{ div_test(5, 8, 0, 5) }, % 5 / 8 = 0 + 5/8
|
|
{ div_test(7, 2, 3, 1) }, % 7 / 2 = 3 + 1/2
|
|
{ div_test(100, 13, 7, 9) } % 100 / 13 = 7 + 9/13
|
|
->
|
|
io__write_string("div test succeeded\n")
|
|
;
|
|
io__write_string("div test failed\n")
|
|
),
|
|
(
|
|
{ mod_test(3, 8, 0, 3) }, % 3 / 8 = 0 + 3/8
|
|
{ mod_test(5, 8, 0, 5) }, % 5 / 8 = 0 + 5/8
|
|
{ mod_test(7, 2, 3, 1) }, % 7 / 2 = 3 + 1/2
|
|
{ mod_test(100, 13, 7, 9) } % 100 / 13 = 7 + 9/13
|
|
->
|
|
io__write_string("mod test succeeded\n")
|
|
;
|
|
io__write_string("mod test failed\n")
|
|
).
|
|
|
|
:- pred quot_test(int::in, int::in, int::in, int::in) is semidet.
|
|
quot_test(Num, Div, Quot, _Rem) :-
|
|
Num // Div = Quot,
|
|
(-Num) // Div = -Quot,
|
|
(-Num) // (-Div) = Quot,
|
|
Num // (-Div) = -Quot.
|
|
|
|
:- pred rem_test(int::in, int::in, int::in, int::in) is semidet.
|
|
rem_test(Num, Div, _Quot, Rem) :-
|
|
Num rem Div = Rem,
|
|
(-Num) rem Div = -Rem,
|
|
(-Num) rem (-Div) = -Rem,
|
|
Num rem (-Div) = Rem.
|
|
|
|
:- pred div_test(int::in, int::in, int::in, int::in) is semidet.
|
|
div_test(Num, Div, Quot, _Rem) :-
|
|
Num div Div = Quot,
|
|
(-Num) div Div = -Quot - 1,
|
|
(-Num) div (-Div) = Quot,
|
|
Num div (-Div) = -Quot - 1.
|
|
|
|
:- pred mod_test(int::in, int::in, int::in, int::in) is semidet.
|
|
mod_test(Num, Div, _Quot, Rem) :-
|
|
Num mod Div = Rem,
|
|
(-Num) mod Div = Div - Rem,
|
|
(-Num) mod (-Div) = -Rem,
|
|
Num mod (-Div) = -(Div - Rem).
|
|
|