MCPcopy Create free account
hub / github.com/SoarGroup/Soar / FindIdentifierSymbol

Method FindIdentifierSymbol

Core/ClientSML/src/sml_ClientWorkingMemory.cpp:81–90  ·  view source on GitHub ↗

Searches for an identifier object that matches this id.

Source from the content-addressed store, hash-verified

79
80// Searches for an identifier object that matches this id.
81IdentifierSymbol* WorkingMemory::FindIdentifierSymbol(char const* pID)
82{
83 IdSymbolMapIter match = m_IdSymbolMap.find(std::string(pID)) ;
84 if (match == m_IdSymbolMap.end())
85 {
86 return 0;
87 }
88
89 return match->second;
90}
91
92void WorkingMemory::SetOutputLinkChangeTracking(bool setting)
93{

Callers 2

CreateWMEMethod · 0.95

Calls 2

endMethod · 0.80
findMethod · 0.45

Tested by

no test coverage detected