mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-19 19:33:46 +00:00
tests/invalid/*.{m,err_exp}:
tests/misc_tests/*.m:
tests/mmc_make/*.m:
tests/par_conj/*.m:
tests/purity/*.m:
tests/stm/*.m:
tests/string_format/*.m:
tests/structure_reuse/*.m:
tests/submodules/*.m:
tests/tabling/*.m:
tests/term/*.m:
tests/trailing/*.m:
tests/typeclasses/*.m:
tests/valid/*.m:
tests/warnings/*.{m,exp}:
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 tests
that check compiler error messages, expect the new line numbers.
browser/cterm.m:
browser/tree234_cc.m:
Import only one module per line.
tests/hard_coded/boyer.m:
Fix something I missed.
66 lines
1.6 KiB
Mathematica
66 lines
1.6 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module constraint_proof_bug_lib.
|
|
|
|
:- interface.
|
|
|
|
:- type date.
|
|
:- type code.
|
|
|
|
:- type field(T1, T2)
|
|
---> d(T1)
|
|
; c(T2).
|
|
|
|
:- type dep_op == string.
|
|
|
|
:- typeclass constrainable(T) where [
|
|
pred apply_op(T::in, dep_op::in, T::in) is semidet
|
|
].
|
|
|
|
:- instance constrainable(date).
|
|
:- instance constrainable(code).
|
|
:- instance constrainable(field(T, T2))
|
|
<= (constrainable(T), constrainable(T2)).
|
|
|
|
:- pred get_date_date(int::out, int::out, int::out, date::in) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- type code == int.
|
|
:- type date
|
|
---> d(int).
|
|
|
|
get_date_date(Y, M, D, _Date) :- Y=1999, M=6, D=25.
|
|
|
|
:- instance constrainable(date) where [
|
|
pred(apply_op/3) is apply_op_dates
|
|
].
|
|
|
|
:- pred apply_op_dates(date::in, dep_op::in, date::in) is semidet.
|
|
|
|
apply_op_dates(D1, "=", D2) :-
|
|
get_date_date(Y1, M1, Day1, D1),
|
|
get_date_date(Y1, M1, Day1, D2).
|
|
|
|
:- instance constrainable(code) where [
|
|
pred(apply_op/3) is apply_op_codes
|
|
].
|
|
|
|
:- pred apply_op_codes(code::in, dep_op::in, code::in) is semidet.
|
|
|
|
apply_op_codes(D1, "=", D2) :- compare((=), D1, D2).
|
|
|
|
:- instance constrainable(field(T, T2)) <=
|
|
(constrainable(T), constrainable(T2))
|
|
where [
|
|
pred(apply_op/3) is apply_op_fields
|
|
].
|
|
|
|
:- pred apply_op_fields(field(T, T2)::in, dep_op::in, field(T, T2)::in)
|
|
is semidet <= (constrainable(T), constrainable(T2)).
|
|
|
|
apply_op_fields(d(D1), Op, d(D2)) :- apply_op(D1, Op, D2).
|
|
apply_op_fields(c(D1), Op, c(D2)) :- apply_op(D1, Op, D2).
|