use of nars.plugin.mental.Counting in project opennars by opennars.
the class Plugins method init.
public NAR init(NAR n) {
n.addPlugin(new RuntimeNARSettings());
n.addPlugin(new Emotions());
// expect an event
n.addPlugin(new Anticipate());
// Term label = SetInt.make(new Term("bright"));
// n.addSensoryChannel(label.toString(),
// new VisionChannel(label, n, n, 1, 1));
boolean full_internal_experience = false;
if (!full_internal_experience) {
n.addPlugin(new InternalExperience());
} else {
n.addPlugin(new FullInternalExperience());
n.addPlugin(new Abbreviation());
n.addPlugin(new Counting());
}
return n;
}
Aggregations