169 double total = totalTimer_.time();
171 <<
"Total" << std::setw(17) <<
"Per Move" << std::setw(14) <<
"Fraction" <<
"\n";
172 out <<
"Attempt Move: "
176 out <<
"Compressor: "
177 <<
Dbl(compressorTimer_.time(), 9, 3) <<
" s, "
178 <<
Dbl(compressorTimer_.time()/nAttempt_, 9, 3) <<
" s, "
179 <<
Dbl(compressorTimer_.time()/total, 9, 3) <<
"\n";
180 out <<
"Compute eigen-components: "
181 <<
Dbl(componentTimer_.time(), 9, 3) <<
" s, "
182 <<
Dbl(componentTimer_.time()/nAttempt_, 9, 3) <<
" s, "
183 <<
Dbl(componentTimer_.time()/total, 9, 3) <<
"\n";
184 out <<
"Compute Hamiltonian: "
185 <<
Dbl(hamiltonianTimer_.time(), 9, 3) <<
" s, "
186 <<
Dbl(hamiltonianTimer_.time()/nAttempt_, 9, 3) <<
" s, "
187 <<
Dbl(hamiltonianTimer_.time()/total, 9, 3) <<
"\n";
188 out <<
"Accept or Reject: "
189 <<
Dbl(decisionTimer_.time(), 9, 3) <<
" s, "
190 <<
Dbl(decisionTimer_.time()/nAttempt_, 9, 3) <<
" s, "
191 <<
Dbl(decisionTimer_.time()/total, 9, 3) <<
"\n";
192 out <<
"total time: "
193 <<
Dbl(total, 9, 3) <<
" s, "
194 <<
Dbl(total/nAttempt_, 9, 3) <<
" s \n";