mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
This first step deals with the consequences of such removal.
The removal itself will happen in stage 2. That step will
add "is" to the prolog module in the library.
compiler/add_pred.m:
Prepare for "is" being in the prolog module.
compiler/options.m:
Add a way to test whether the change to add_pred.m is in the
installed compiler.
tests/accumulator/base.m:
tests/accumulator/call_in_base.m:
tests/accumulator/chain.m:
tests/accumulator/commutative.m:
tests/accumulator/construct_test.m:
tests/accumulator/dcg.m:
tests/accumulator/deconstruct_test.m:
tests/accumulator/disj.m:
tests/accumulator/func.m:
tests/accumulator/heuristic.m:
tests/accumulator/highorder.m:
tests/accumulator/identity.m:
tests/accumulator/inter.m:
tests/accumulator/nonrec.m:
tests/accumulator/out_to_in.m:
tests/accumulator/qsort.m:
tests/accumulator/simple.m:
tests/accumulator/split.m:
tests/accumulator/swap.m:
tests/benchmarks/cqueens.m:
tests/benchmarks/crypt.m:
tests/benchmarks/deriv.m:
tests/benchmarks/deriv2.m:
tests/benchmarks/nrev.m:
tests/benchmarks/poly.m:
tests/benchmarks/primes.m:
tests/benchmarks/qsort.m:
tests/benchmarks/query.m:
tests/benchmarks/tak.m:
tests/debugger/interactive.m:
tests/declarative_debugger/Mercury.options:
tests/declarative_debugger/io_read_bug.m:
tests/declarative_debugger/queens.exp:
tests/declarative_debugger/queens.m:
tests/dppd/imperative_solve_impl.m:
tests/dppd/map_impl.m:
tests/dppd/max_length_impl.m:
tests/dppd/sum.m:
tests/dppd/upto_sum_impl.m:
tests/par_conj/dep_par_21.m:
tests/tabling/seq.m:
tests/term/dds3_14.m:
tests/term/mmatrix.m:
tests/term/money.m:
tests/term/occur.m:
tests/term/pl4_5_2.m:
tests/term/queens.m:
tests/typeclasses/inference_test.m:
tests/typeclasses/inference_test_2.m:
tests/valid/lazy_list.m:
tests/warnings/duplicate_const.m:
Replace calls to "is" with unifications. In many places,
bring programming style up to date.
81 lines
1.9 KiB
Mathematica
81 lines
1.9 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% qsort
|
|
%
|
|
% David H. D. Warren
|
|
%
|
|
% quicksort a list of 50 integers
|
|
|
|
:- module qsort.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module int.
|
|
:- import_module list.
|
|
|
|
main(!IO) :-
|
|
data(Data),
|
|
qsort(Data, [], SortedData),
|
|
print_list(SortedData, !IO).
|
|
|
|
:- pred data(list(int)::out) is det.
|
|
|
|
data([27, 74, 17, 33, 94, 18, 46, 83, 65, 2, 32, 53, 28, 85, 99, 47, 28, 82,
|
|
6, 11, 55, 29, 39, 81, 90, 37, 10, 0, 66, 51, 7, 21, 85, 27, 31, 63, 75,
|
|
4, 95, 99, 11, 28, 61, 74, 18, 92, 40, 53, 59, 8]).
|
|
|
|
:- pred qsort(list(int)::in, list(int)::in, list(int)::out) is det.
|
|
|
|
qsort([], !SortedRest).
|
|
qsort([H | T], !SortedRest) :-
|
|
partition(T, H, Los, His),
|
|
qsort(His, !SortedRest),
|
|
!:SortedRest = [H | !.SortedRest],
|
|
qsort(Los, !SortedRest).
|
|
|
|
:- pred partition(list(int), int, list(int), list(int)).
|
|
:- mode partition(in, in, out, out) is det.
|
|
|
|
partition([], _P, [], []).
|
|
partition([H | T], Pivot, Lo, Hi) :-
|
|
( if H =< Pivot then
|
|
partition(T, Pivot, LoTail, Hi),
|
|
Lo = [H | LoTail]
|
|
else
|
|
partition(T, Pivot, Lo, HiTail),
|
|
Hi = [H | HiTail]
|
|
).
|
|
|
|
:- pred print_list(list(int)::in, io::di, io::uo) is det.
|
|
|
|
print_list(Xs, !IO) :-
|
|
(
|
|
Xs = [],
|
|
io.write_string("[]\n", !IO)
|
|
;
|
|
Xs = [H | T],
|
|
io.write_string("[", !IO),
|
|
print_list_elements(H, T, !IO),
|
|
io.write_string("]\n", !IO)
|
|
).
|
|
|
|
:- pred print_list_elements(int::in, list(int)::in, io::di, io::uo) is det.
|
|
|
|
print_list_elements(X, Xs, !IO) :-
|
|
io.write_int(X, !IO),
|
|
(
|
|
Xs = []
|
|
;
|
|
Xs = [H | T],
|
|
io.write_string(", ", !IO),
|
|
print_list_elements(H, T, !IO)
|
|
).
|