Skip to content

Commit f61e496

Browse files
authored
Update permpure_full.cpp
1 parent fa72a6f commit f61e496

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

permpure_full.cpp

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,13 @@ int main() {
9595

9696
auto finish = std::chrono::high_resolution_clock::now();
9797
std::chrono::duration<double> duration = finish - start;
98-
99-
printf("\npermpure_full\t%u\t%lf seconds", PERM_SIZE, duration.count());
100-
printf("\nD[PERM_SIZE-1] = %d, checksum = %llu\n", D[PERM_SIZE-1], checksum);
98+
99+
// Standardized output for easy parsing
100+
printf("\nREPORT_START");
101+
printf("\nALGORITHM: permpure_full");
102+
printf("\nEXECUTION_TIME: %lf", duration.count());
103+
printf("\nCHECKSUM: %llu", checksum);
104+
printf("\nREPORT_END\n");
101105

102106
#ifdef DEBUG
103107
// Debug info logic preserved
@@ -118,3 +122,4 @@ int main() {
118122

119123
return 0;
120124
}
125+

0 commit comments

Comments
 (0)