|
From: Nick C. <sr...@us...> - 2002-10-14 20:31:38
|
Update of /cvsroot/repast/repast/uchicago/src/sim/engine In directory usw-pr-cvs1:/tmp/cvs-serv18054 Modified Files: BaseController.java Controller.java Log Message: Fixed problem with using too much cpu while a simulation is paused. Previous code ran a tight loop waiting for pauseSim != true. New code uses wait() and notify() to "suspend" the running thread and uses no cpu while paused. |