You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Console.WriteLine($"{Environment.NewLine}Exported information about {componentsOrderedByAvgTimeDesc.Count()} components sorted by decreasing average computation time to {componentCsvFilename}.");
logMessage($"{Environment.NewLine}Exported information about {componentsOrderedByAvgTimeDesc.Count()} components sorted by decreasing average computation time to {componentCsvFilename}.");
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeSolver,"Milliseconds used by Grasshopper solver (time_solver)");
175
-
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeSolverCollect,"Milliseconds used to collect data after solution (time_solver_collect)");
176
-
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeStorage,"Milliseconds used to store data (time_storage)");
177
-
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeProcessing,"Milliseconds used to process the request (time_processing)");
178
-
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeWait,"Milliseconds the request waited before being processed (time_wait)");
179
-
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeCompletion,"Milliseconds used to answer the request (time_completion)");
180
-
PrintSummaryStatistic(successfullComputations, c =>c.Stats.SizeAssets,"Size of resulting data in bytes (size_assets)");
183
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeSolver,"Milliseconds used by Grasshopper solver (time_solver)",logMessage);
184
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeSolverCollect,"Milliseconds used to collect data after solution (time_solver_collect)",logMessage);
185
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeStorage,"Milliseconds used to store data (time_storage)",logMessage);
186
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeProcessing,"Milliseconds used to process the request (time_processing)",logMessage);
187
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeWait,"Milliseconds the request waited before being processed (time_wait)",logMessage);
188
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.TimeCompletion,"Milliseconds used to answer the request (time_completion)",logMessage);
189
+
PrintSummaryStatistic(successfullComputations, c =>c.Stats.SizeAssets,"Size of resulting data in bytes (size_assets)",logMessage);
0 commit comments