Search found 3 matches
- Wed Jan 01, 2014 9:39 pm
- Forum: Programming and Technical Discussions
- Topic: Get the best move from alpha-beta
- Replies: 2
- Views: 1522
Get the best move from alpha-beta
How do you get the best move from alpha-beta, instead of just a score?
- Wed Jul 17, 2013 6:34 pm
- Forum: Programming and Technical Discussions
- Topic: UCI engine
- Replies: 5
- Views: 2125
Re: UCI engine
It says it failed to run the engine. The engine does not even get the chance to identify itself. Maybe there are some "standard setup file" avaible or something.
- Wed Jul 17, 2013 5:37 pm
- Forum: Programming and Technical Discussions
- Topic: UCI engine
- Replies: 5
- Views: 2125
UCI engine
I am trying to program an UCI engine, but the setup fails. Below is a part of the function setting up the engine.
void Proxy::receiveMessage()
{
while (std::getline (std::cin, input ))
{
if(input == "uci")
{
cout << input << "\n";
message << input << endl;
};
}
}
What is wrong?
void Proxy::receiveMessage()
{
while (std::getline (std::cin, input ))
{
if(input == "uci")
{
cout << input << "\n";
message << input << endl;
};
}
}
What is wrong?