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

Function lookup_rhs_function

Core/SoarKernel/src/rhs_functions.cpp:105–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105rhs_function* lookup_rhs_function(agent* thisAgent, Symbol* name)
106{
107 rhs_function* rf;
108
109 for (rf = thisAgent->rhs_functions; rf != NIL; rf = rf->next)
110 {
111 if (rf->name == name)
112 {
113 return rf;
114 }
115 }
116 return NIL;
117}
118
119void remove_rhs_function(agent* thisAgent, Symbol* name) /* code from Koss 8/00 */
120{

Callers 3

installRHSMethod · 0.85
reteload_rhs_valueFunction · 0.85

Calls

no outgoing calls

Tested by 1

installRHSMethod · 0.68