1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-26 10:00:42 +00:00

rogueviz:: dhrg:: Ld to lld

This commit is contained in:
Zeno Rogue 2024-04-28 02:49:24 +02:00
parent 33aacfa289
commit aafced83aa

View File

@ -268,7 +268,7 @@ void writestats() {
ld placement_loglik = loglik_placement(); ld placement_loglik = loglik_placement();
for(int u=0; u<MAXDIST; u++) if(tally[u]) { for(int u=0; u<MAXDIST; u++) if(tally[u]) {
println(hlog, hr::format("* %4d: %8d / %12Ld = %lf %.10" PLDF " %.10" PLDF, println(hlog, hr::format("* %4d: %8d / %12lld = %lf %.10" PLDF " %.10" PLDF,
u, edgetally[u], tally[u], double(edgetally[u]) / tally[u], u, edgetally[u], tally[u], double(edgetally[u]) / tally[u],
saved_logistic.yes(u), current_logistic.yes(u))); saved_logistic.yes(u), current_logistic.yes(u)));
} }