%-----------------------------------------------------------------------------% :- module table_m1. :- interface. :- pred aaa(int::in) is det. :- pred aaa2(int::in, int::out) is nondet. %-----------------------------------------------------------------------------% %-----------------------------------------------------------------------------% :- implementation. :- import_module table_m2. :- import_module int. :- import_module require. %-----------------------------------------------------------------------------% :- pragma no_inline(aaa/1). aaa(N) :- bbb(N). :- pragma no_inline(aaa2/2). :- pragma minimal_model(aaa2/2). aaa2(N, M) :- aaa2(N, M). %-----------------------------------------------------------------------------% % vim: ft=mercury ts=8 sts=4 sw=4 et