Checksum: 55749 Path: utzoo!utgpu!brady From: brady@gpu.utcs.toronto.edu (Donald C. Brady) Date: Thu, 7-Apr-88 02:48:32 EDT Message-ID: <1988Apr7.024832.1533@gpu.utcs.toronto.edu> Organization: University of Toronto Computing Services Newsgroups: comp.ai.neural-nets Subject: Re: request for net software References: <346@c10sd1.StPaul.NCR.COM> <6628@ames.arpa> <1627@netmbx.UUCP> <1298@hubcap.UUCP> Reply-To: brady@gpu.utcs.UUCP (Donald C. Brady) I found that the reason that BPSIM does not work is that it fails to initialize the storage obtained in the create_unit function. It can be corrected by adding the lines: unitptr->inlinks = NULL; unitptr->outlinks = NULL; just before the return statement in the definition of create_unit. With this change, it works fine under Borland Turbo C (and also Microsoft C, I believe).