mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
tests/accumulator/*.m:
tests/analysis_*/*.m:
tests/benchmarks*/*.m:
tests/debugger*/*.{m,exp,inp}:
tests/declarative_debugger*/*.{m,exp,inp}:
tests/dppd*/*.m:
tests/exceptions*/*.m:
tests/general*/*.m:
tests/grade_subdirs*/*.m:
tests/hard_coded*/*.m:
Make these tests use four-space indentation, and ensure that
each module is imported on its own line. (I intend to use the latter
to figure out which subdirectories' tests can be executed in parallel.)
These changes usually move code to different lines. For the debugger tests,
specify the new line numbers in .inp files and expect them in .exp files.
105 lines
2.0 KiB
Mathematica
105 lines
2.0 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Test the --delay-partial-instantiations option with disjunctions.
|
|
|
|
:- module delay_partial_test2.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is cc_multi.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bool.
|
|
:- import_module int.
|
|
:- import_module list.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
main(!IO) :-
|
|
( foo(2, Y) ->
|
|
io.print(Y, !IO),
|
|
io.nl(!IO)
|
|
;
|
|
io.print("foo failed\n", !IO)
|
|
),
|
|
( bar(3, Y2) ->
|
|
io.print(Y2, !IO),
|
|
io.nl(!IO)
|
|
;
|
|
io.print("bar failed\n", !IO)
|
|
),
|
|
quux(Q, yes),
|
|
io.print(Q, !IO),
|
|
io.nl(!IO).
|
|
|
|
:- type t
|
|
---> t(
|
|
a :: int,
|
|
b :: int
|
|
).
|
|
|
|
:- pred foo(int::in, t::out) is nondet.
|
|
:- pragma no_inline(foo/2).
|
|
|
|
foo(X, Y) :-
|
|
U ^ b = U ^ a - 1,
|
|
Y ^ b = Z,
|
|
(
|
|
X = 1,
|
|
Y ^ a = Z,
|
|
Z = U ^ b
|
|
;
|
|
int.even(X),
|
|
Z = U ^ a,
|
|
Y ^ a = U ^ a
|
|
;
|
|
int.odd(X),
|
|
Z = U ^ a,
|
|
Y ^ a = X
|
|
),
|
|
U ^ a = X.
|
|
|
|
:- pred bar(int::in, t::out) is nondet.
|
|
:- pragma no_inline(bar/2).
|
|
|
|
bar(X, Y) :-
|
|
Y ^ a = Z, % constructed outside
|
|
U ^ b = U ^ a - 1,
|
|
(
|
|
X = 1,
|
|
Z = U ^ b,
|
|
Y ^ b = Z % ground inside
|
|
;
|
|
int.even(X),
|
|
Z = U ^ a,
|
|
Y ^ b = 2 % ground inside
|
|
;
|
|
int.odd(X),
|
|
Z = U ^ a,
|
|
Y ^ b = 3 % ground inside
|
|
),
|
|
U ^ a = X.
|
|
|
|
:- type q
|
|
---> qa(int)
|
|
; qb(int, int)
|
|
; qc(int)
|
|
; qd.
|
|
|
|
:- pred quux(q, bool).
|
|
:- mode quux(in, in) is semidet.
|
|
:- mode quux(out, in(bound(yes))) is multi.
|
|
|
|
:- pragma no_inline(quux/2).
|
|
|
|
quux(qa(_), no).
|
|
quux(qb(_, _), no).
|
|
quux(qc(42), yes).
|
|
quux(qd, yes).
|