home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.prolog
- Path: sparky!uunet!gossip.pyramid.com!aquila.sni-usa.com!news.sni.de!uranium!nebula!hermann
- From: hermann@nebula.sni.de (Hermann)
- Subject: Re: Help on problem needed!
- Sender: news@nixpbe.sni.de (Martin Boening)
- Message-ID: <hermann.714030202@nebula>
- Date: Mon, 17 Aug 1992 05:43:22 GMT
- References: <meskes.713709771@ulysses>
- Nntp-Posting-Host: nebula.sto.pdb.sni.de
- Organization: Siemens Nixdorf Info.Sys. AG, Paderborn, Germany
- Keywords: help
- Lines: 13
-
- Try this one
-
- b(X,Y,0) :-
- a(X,Y,0).
-
- b(X,Y,1) :-
- not a(X,Y,0),
- a(X,Y,1).
- --
- +===========================================================================+
- |Hermann Schultebeyring |Tel. ++49 (0)5251 8-31863 |
- |SNI AG |Fax: ++49 (0)5251 8-31869 |
- |AI Centre AP333 |Email: schultebeyring.pad@sni.de |
-