1/* Part of Ciao Prolog compatibility library
2
3 Author: Edison Mera
4 E-mail: efmera@gmail.com
5 WWW: http://www.edisonm.com
6 Copyright (C): 2013, Process Design Center, Breda, The Netherlands.
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
22 As a special exception, if you link this library with other files,
23 compiled with a Free Software compiler, to produce an executable, this
24 library does not by itself cause the resulting executable to be covered
25 by the GNU General Public License. This exception does not however
26 invalidate any other reasons why the executable file might be covered by
27 the GNU General Public License.
28*/
32:- package(basicmodes). 33:- use_module(engine(hiord_rt)). 34 35:- op(500, fx,(?)). 36:- op(500, fx,(@)).
39:- modedef '+'(A) : nonvar(A). 40:- modedef '-'(A) : var(A). 41:- modedef '?'(_). 42:- modedef '@'(A) + not_further_inst(A).
45:- modedef in(A) : ground(A) => ground(A). 46:- modedef out(A) : var(A) => ground(A). 47:- modedef go(A) => ground(A). 48 49% :- push_prolog_flag(read_hiord,on). 50 51%% Parametric versions of above 52:- modedef '+'(A,X) :: call(X, A) : nonvar(A). 53:- modedef '-'(A,X) :: call(X, A) : var(A). 54:- modedef '?'(A,X) :: call(X, A). 55:- modedef '@'(A,X) :: call(X, A) + not_further_inst(A). 56:- modedef in(A,X) :: call(X, A) : ground(A) => ground(A). 57:- modedef out(A,X) :: call(X, A) : var(A) => ground(A). 58:- modedef go(A,X) :: call(X, A) => ground(A). 59 60% :- pop_prolog_flag(read_hiord).