Repast:如何统计满足特定条件的agent总数

Repast: how to count the total number of agents satisfying the specific condition

每个代理都有一个私有布尔变量"Happy?"。如何统计代理人用【开心? = 真]?

吃饭有直接的方法吗?或者我遍历所有代理并单独计算它们?

更新:

我试过全局调度方式:https://repast.github.io/docs/RepastReference/RepastReference.html#schedule-global

当我在 ContextBuilder 中使用 @ScheduledMethods 放置下面的代码时,它不起作用。

grid.moveTo(this_girl, group_x,group_y);
            }
        }       
        return context;
    }

    @ScheduledMethod(start = 1, interval = 1, shuffle=true)
    public void step () {
        Context<Object> context = ContextUtils.getContext(this);
        Query<Object> query = new PropertyEquals<Object>(context, "happy", true);
        int end_count = 0;
        System.out.println(end_count);
        for (Object o : query.query()) {
           if (o instanceof Boy) {
               end_count ++;               
           }
           if (o instanceof Girl) {
               end_count ++;               
           }
        }
        System.out.println(end_count);
        if (end_count == 70) {
            RunEnvironment.getInstance().endRun();
        }
    }
}

如果我将以上代码放入男代理或女代理操作中,它就可以工作了。

@ScheduledMethod(start = 1, interval = 1,shuffle=true)
    public void step() {
        relocation();
        update_happiness();
        endRun();

    }

    public void endRun( ) {
        Context<Object> context = ContextUtils.getContext(this);
        Query<Object> query = new PropertyEquals<Object>(context, "happy", true);
        int end_count = 0;
        System.out.println(end_count);
        for (Object o : query.query()) {
           if (o instanceof Boy) {
               end_count ++;               
           }
           if (o instanceof Girl) {
               end_count ++;               
           }
        }
        System.out.println(end_count);
        if (end_count == 70) {
            RunEnvironment.getInstance().endRun();
        }
    }

您可以为此使用查询——请参阅此问题的查询答案:

您还可以在 Context 中使用查询方法,在该上下文中向其传递一个谓词,如果快乐,谓词 return 为真。

在这两种情况下,您都需要一个用于私有布尔快乐字段的访问器方法——例如

public boolean isHappy() {
   return happy;
}

同样在这两种情况下,查询 return 是对所有 happy 为 true 的代理的可迭代,而不是一个集合,您可以在其中获取大小来获取计数。因此,您必须遍历它并增加一个计数器。

更新:

您当前的问题与日程安排有关。您不能轻易地在 ConetextBuilder 上安排一个方法,因为它实际上不是模型的一部分,而是用于初始化它。安排你想要的最简单的方法是在 ContextBuilder 中明确地安排它,比如:

RunEnvironment.getInstance().getCurrentSchedule().schedule(ScheduleParameters.createRepeating(1, 1, ScheduleParameters.LAST_PRIORITY), () -> {
            Query<Object> query = new PropertyEquals<Object>(context, "happy", true);
            int end_count = 0;
            System.out.println(end_count);
            for (Object o : query.query()) {
                if (o instanceof Boy) {
                    end_count++;
                }
                if (o instanceof Girl) {
                    end_count++;
                }
            }
            System.out.println(end_count);
            if (end_count == 70) {
                RunEnvironment.getInstance().endRun();
            }
    });

LAST_PRIORITY 应确保所有代理行为都将在幸福计数被轮询之前发生。