soartech / jsoar

Pure Java implementation of the Soar cognitive architecture.
http://soartech.github.com/jsoar/
BSD 3-Clause "New" or "Revised" License
54 stars 19 forks source link

Slot impasse_id is only read #131

Open msche opened 3 years ago

msche commented 3 years ago

I'm trying to start understanding the jsoar code and while analyzing it I noticed that Slot has a field impasse_id which is only read by other classes (Consistency and Decider). Within the Decider there are also checks whether impasse_id is not null but since it seems this field is never written, those checks are always false.

Do i misread the code or missing some part?