mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-16 09:53:36 +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.
67 lines
1.2 KiB
Mathematica
67 lines
1.2 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Benchmark Program - Counting occurrences in lists
|
|
%
|
|
% Author: B. Ramkumar and L. V. Kale
|
|
% Date:
|
|
%
|
|
% To test: run o/1.
|
|
%
|
|
% Benchmark is o(31), runs with -A1 -E256 -C128
|
|
|
|
:- module occur.
|
|
|
|
:- interface.
|
|
|
|
:- type list(T)
|
|
---> []
|
|
; [T | list(T)].
|
|
|
|
:- pred occurall(list(int)::in, list(list(int))::in, list(list(int))::out)
|
|
is nondet.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module int.
|
|
:- import_module prolog.
|
|
|
|
occurall([], _X, []).
|
|
occurall([X | Y], Z, [[X, W] | V]) :-
|
|
occur(X, Z, W),
|
|
occurall(Y, Z, V).
|
|
|
|
:- pred occur(T1, list(list(T1)), int).
|
|
:- mode occur(in, in, out).
|
|
|
|
occur(_X, [], 0).
|
|
occur(X, [Y | Z], W) :-
|
|
( if
|
|
count(X, Y, A),
|
|
occur(X, Z, B)
|
|
then
|
|
W = A + B
|
|
else
|
|
fail
|
|
).
|
|
|
|
:- pred count(T1, list(T1), int).
|
|
:- mode count(in, in, out).
|
|
|
|
count(_X, [], 0).
|
|
count(X, [Y | Z], W) :-
|
|
( if count(X, Z, W1) then
|
|
addx(X, Y, W1, W)
|
|
else
|
|
fail
|
|
).
|
|
|
|
:- pred addx(T1, T1, int, int).
|
|
:- mode addx(in, in, in, out).
|
|
|
|
addx(X, X, W1, W) :-
|
|
W = W1 + 1.
|
|
addx(X, Y, W1, W1) :-
|
|
X \= Y.
|