Syntax Checker: Delegation
It was determined that the recursive function where syntax checker checks an object and all objects below it was where we should partition the work by checking to see if the child object was likely to be the root of a task sized tree
if((num_processes > 1) && Delegate(test_obj, comp_obj, level))
if(global_routing_type == SPDI_ROUTE_BY_XMTL) SPDI_RouteByXmtlNameFromObject(comp_obj);
SPDI_SendLevelPathObject((level+1), path, comp_obj);
result = internal_object_test(comp_obj, (SE_UINT16)(level+1),
path, !(status==SE_DIFFERENT_TRANSMITTAL)) && result;