我假设您有一个类型为integer的变量numberAgentsToCreate,用于存储源要创建的受限代理的数量。
您可以中断或结束模拟,也可以完全退出模拟。
在接收器块的OnEnter代码中,使用以下代码:
if(self.count()>=numberAgentsToCreate){
getEngine().pause(); //to pause model execution
//getEngine().finish(); //to end the model execution
//getEngine().stop(); //to destroy the model
}