Hi,
I am writing a chess Engine in Java => https://github.com/RomainGoussault/Deepov
I have tested the move generation with all the positions from the chessprogramming wiki perft page => https://chessprogramming.wikispaces.com/Perft+Results
They all work (for at least depth 4) except the Kiwipete position. FEN: r3k2r/p1ppqpb1/bn2pnp1/3PN3/1p2P3/2N2Q1p/PPPBBPPP/R3K2R w KQkq -.
Depth 4 results do not match. I find 4 315 415 nodes and the correct value is 4 085 603.
I don't know where to look because the majority of the hard scenarios (castling, promotion, en passant) were tested on the other positions. I suspect it's something related with the black h3 pawn, because my programm outputs some errors for this pawn.
How to track down this bug?
Thanks