Skip to content

Commit

Permalink
Fix eval command format after introducion of ATT++
Browse files Browse the repository at this point in the history
  • Loading branch information
PikaCat-OuO committed Aug 31, 2024
1 parent 5415290 commit 2d53857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nnue/nnue_misc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ std::string trace(Position& pos, const Eval::NNUE::Network& network, Accumulator

for (std::size_t bucket = 0; bucket < LayerStacks; ++bucket)
{
ss << "| " << bucket << " " //
ss << "| " << std::left << std::setw(9) << bucket //
<< " | ";
format_cp_aligned_dot(t.psqt[bucket], ss, pos);
ss << " " //
Expand Down

0 comments on commit 2d53857

Please sign in to comment.