Method Execution Times / Display Strings and ToolTips Defined in Sim/Method.cpp: QString Method::executionTimeDisplayStr(); Revised: 2-24-2010 STD_DISPATCH: Default Execution Time OLAM_NEVER: Never OLAM_BEG_BLOCK_AND_EXEC: After Simulation OLAM_BEG_RUN: Beg. of Run OLAM_PRE_BLOCK: Beg. of Timestep Once OLAM_PRE_BLOCK_AND_EXEC: Beg. of Timestep ------------------ ... WITH TOOLTIPS ------------------ STD_DISPATCH: NAME: Default Execution Time OLAM_NEVER: NAME: Never TIP: Method does not execute. OLAM_BEG_BLOCK_AND_EXEC: NAME: After Simulation TIP: Execute the method after each timestep's simulation is complete and as dependencies change. OLAM_BEG_RUN: NAME: Beg. of Run TIP: Execute the method once per timestep at the beginning of the run. OLAM_PRE_BLOCK: NAME: Beg. of Timestep Once TIP: Execute the method once before each timestep's simulation. OLAM_PRE_BLOCK_AND_EXEC: NAME: Beg. of Timestep TIP: Execute the method before each timestep's simulation and as dependencies change. ---