sirctseb / Scope

Soar coping model
1 stars 0 forks source link

Change output handling to be in a Soar output callback #16

Open sirctseb opened 12 years ago

sirctseb commented 12 years ago

Does this offer any advantages? I think it would be something like:

private static void OnRC()
{
    // add task as ^release
    kernel.RunAllAgentsForever();
    // remove task
}
private static void OnSoarOutput()
{
    ApplyStrateg();
}