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
output_lines.append(f"# of APC Candidates: {total_candidates}")
118
-
output_lines.append(f"Sum of Instructions: {total_statements}")
119
-
output_lines.append(f"Average Instructions per APC Candidate: {total_statements/total_candidates:.1f}")
118
+
output_lines.append(f"Sum of Instructions: {total_instructions}")
119
+
output_lines.append(f"Average Instructions per APC Candidate: {total_instructions/total_candidates:.1f}")
120
120
output_lines.append("")
121
121
output_lines.append(f"Sum of Cost: {total_cost_before} → {total_cost_after} ({total_cost_improvement_factor:.2f}x reduction)")
122
122
output_lines.append(f"Sum of Main Columns: {total_before_main_columns} → {total_after_main_columns} ({main_columns_improvement_factor:.2f}x reduction)")
0 commit comments