Running chess engine via command window only
Moderator: Ras
-
- Posts: 85
- Joined: Sun May 29, 2011 11:56 pm
- Location: San Diego
Re: Running chess engine via command window only
Yes, this is what I found earlier which let me to think I'm not supplying enough information. Thanks much for your reply.
-
- Posts: 85
- Joined: Sun May 29, 2011 11:56 pm
- Location: San Diego
Re: Running chess engine via command window only
By simply suppying movetime it performs so much better. Theres still some other things I can set to make it even better. Thanks again.
-
- Posts: 686
- Joined: Thu Mar 03, 2011 4:57 pm
- Location: Germany
Re: Running chess engine via command window only
two additional hints
when you use the Arena Engine Debug Window you see exactly the commands that arena sends to he engine, so you can just copy them
for long running games the
"position startpos moves ..." command might not fit in the input buffer in console mode anymore (256 char limit), so you might miss the last moves because they are pruned away by copy & paste
Thomas...
when you use the Arena Engine Debug Window you see exactly the commands that arena sends to he engine, so you can just copy them
for long running games the
"position startpos moves ..." command might not fit in the input buffer in console mode anymore (256 char limit), so you might miss the last moves because they are pruned away by copy & paste
Thomas...
-
- Posts: 85
- Joined: Sun May 29, 2011 11:56 pm
- Location: San Diego
Re: Running chess engine via command window only
Very nice. I'll have to check that out for sure. THanks much
-
- Posts: 5106
- Joined: Tue Apr 29, 2008 4:27 pm
Re: Running chess engine via command window only
That is at least part of your problem. If you don't send the moves you deprive the engine of the game history and that will have an impact on the strength.whittenizer wrote:I think I may have not supplied enough information. I'm setting the fen as in:
"position fen somefentext" then "go". I just found out there's alot more things that can go with the "go" command. Ill play around with those and see what I get.
Thanks for your input.