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

Function init_tracing

Core/SoarKernel/src/trace.cpp:846–857  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

844
845
846void init_tracing(agent* thisAgent)
847{
848 int i;
849
850 for (i = 0; i < 3; i++)
851 {
852 thisAgent->object_tr_ht[i] = make_hash_table(thisAgent, 0, tracing_rule_hash_function);
853 thisAgent->stack_tr_ht[i] = make_hash_table(thisAgent, 0, tracing_rule_hash_function);
854 thisAgent->object_tf_for_anything[i] = NIL;
855 thisAgent->stack_tf_for_anything[i] = NIL;
856 }
857}
858
859trace_format* lookup_trace_format(agent* thisAgent,
860 bool stack_trace,

Callers 1

init_soar_agentFunction · 0.85

Calls 1

make_hash_tableFunction · 0.85

Tested by

no test coverage detected