swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swarm-Support] arborgamesII test fail on Fedora 5


From: Marcus G. Daniels
Subject: Re: [Swarm-Support] arborgamesII test fail on Fedora 5
Date: Fri, 26 Jan 2007 17:14:27 -0700
User-agent: Thunderbird 2.0b1 (Windows/20061206)

Sunwoo Park wrote:
I installed Swarm 2.2.3 on Fedora 5/Pentium 4 PC, and ran test examples
included in swarmapps-objc-2.2-2. All examples except for arborgamesII
worked fine. When I ran arborgames, I got following messages.
<< In Batch mode >>
Nil receiver for step
Arboted
This simulation probably has a collection that gets nil assigned to dead or empty objects. The easiest workaround is to find all the places `step' is called and ensure that before that message is sent that it checks to see if the object is not nil. E.g.

if (obj == nil)
 printf ("attempted step message to nil");
else
 [obj step];


reply via email to

[Prev in Thread] Current Thread [Next in Thread]