Go backward to Displaying other information.
Go up to Displaying other information.
Go forward to memory-stats.

print-stats, stats
------------------


SYNTAX

(print-stats)
(stats)


Lists a summary of run statistics, including the following:
     
   * *The current Soar version, and date of the current
     	statistics.*
     
   * *Number of productions:*  The total number of productions in the
     system, including all chunks built during problem solving and all
     default productions .
     
   * *Elapsed time:* This is CPU time spent running Soar.
     
   * *Number of decision cycles:*  The total number of decision cycles in the
     run.
     
   * *Number of elaboration cycles:*  The total number of elaboration
     cycles that were executed during the run.  This is not the total number of
     production firings, as productions can fire in parallel.
     
   * *Number of production firings:*  This is the total number of
     productions that were fired.
     
   * *Number of wme changes:*  This is the total number of changes to
     working memory. This includes all additions and deletions from working
     memory.
     
   * *Working memory size:*  This gives the average, maximum, and current number 
     of working memory elements.
     


EXAMPLE

Soar> print-stats
Soar 6.0.6 on flamingo.eecs.umich.edu at Wed Jun  9 16:37:26 1993

125 productions (99 default, 26 user, 0 chunks)
   + 0 justifications
Total cpu time: 0.180 seconds
  ( 0.040 match, 0.000 ownership, 0.000 chunking, 0.000 o-support,
    0.050 build instantiations, 0.000 other pref. phase )
23 decision cycles (7.826 msec/dc)
40 elaboration cycles (1.739 ec's per dc, 4.500 msec/ec)
206 production firings (5.150 pf's per ec, 0.874 msec/pf)
425 wme changes (389 additions, 36 removals)
    match time: 0.094 msec/wm change
WM size: 353 current, 209.995 mean, 367 maximum