| 624 | **************************************************************************/ |
| 625 | |
| 626 | void explain_full_trace(agent* thisAgent) |
| 627 | { |
| 628 | |
| 629 | explain_chunk_str* chunk; |
| 630 | |
| 631 | chunk = thisAgent->explain_chunk_list; |
| 632 | /* AGR 564 In previous statement, current_agent(...) was added. 2-May-94 */ |
| 633 | |
| 634 | while (chunk != NULL) |
| 635 | { |
| 636 | explain_trace_chunk(thisAgent, chunk); |
| 637 | chunk = chunk->next_chunk; |
| 638 | } |
| 639 | } |
| 640 |
nothing calls this directly
no test coverage detected