home *** CD-ROM | disk | FTP | other *** search
- %---------------------------------------------------------------------
- %----Remote reading requires doing a local read and putting the result
- %----into the tuple space.
- remote_read(Reply_predicate):-
- read(Read),
- Tuple =.. [Reply_predicate,Read],
- server_out__(_,Tuple).
- %---------------------------------------------------------------------
-