aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: cc087b64d2b80e1f2d47735b1c13b678b3ab6734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use std::{f32::INFINITY, time::{Duration, Instant}};

use chessnost::board::{Board, Color};

fn main() {
    let fen = String::from("5k2/p2Q4/2p5/4q3/8/2P2Pp1/PP4P1/1K3N2 w - - 1 29");
    let mut board = Board::from_FEN(fen);


    board.print();
    loop {
        let mov = match board.read_move() {
            Ok(m) => m,
            Err(e) => {
                println!("Error: {}", e);
                continue;
            }
        };
        print!("{:?}", mov);
        board.make_move(mov);
        board.print();

        let start = Instant::now();
        let (score, pv) = board.iterative_deepening(10, Duration::from_secs(10));
        println!("Finished in {:?}: score={:?}", start.elapsed(), score);

        let mov = pv[0];
        println!("{:?}", mov);
        board.make_move(mov);
        board.print();
        println!("Score for {:?} is now: {}", board.color(), board.quiscence(-INFINITY, INFINITY));
    }
}