I use a simple program called leaf to do the same thing:Ferdy wrote:If you just want the end position analyzed, there is no need to use F13/F14, I can create a tool to extract end position of every game in a pgn then analyzed those positions using an engine, then those positions that are winning or losing by a given score threshold can be separated for example.reflectionofpower wrote: M on FICS and their adjudication system takes an extremely long time so I figured I might give them a better way. They must be doing one game at a time?
As Dann mentioned I also use pgn2fen to get the fen or epd, then scan it to get the last position of every game.
Code: Select all
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char string[32767];
int main(void)
{
while (fgets(string, sizeof string, stdin))
{
if (strstr(string," pm ")) continue;
puts(string);
}
return 0;
}