Restore std::cout instead of printf()

I am not able to reproduce the speed regression anymore,
and also we were using cout even before speed regression
so probably the reason is not there.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-12-25 09:04:28 +01:00
parent e89a8e0913
commit b5f6c2241b
2 changed files with 25 additions and 28 deletions

View File

@@ -17,7 +17,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstdio>
#include <iostream>
#include <string>
@@ -36,9 +35,6 @@ extern void kpk_bitbase_init();
int main(int argc, char* argv[]) {
// Disable output buffering: printf() does not work correctly otherwise
setvbuf(stdout, NULL, _IONBF, 0);
bitboards_init();
Position::init();
kpk_bitbase_init();