Chess-Web / neural_engine /src /bin /test_eval.rs
dpv007's picture
Upload folder using huggingface_hub
7f6918b verified
Raw
History Blame Contribute Delete
319 Bytes
use shakmaty::{Chess, Position, CastlingMode};
use std::sync::{Arc, Mutex};
use std::sync::atomic::{AtomicBool, Ordering};
use std::collections::HashMap;
// I'll copy the engine logic here or just run the engine binary with UCI commands.
fn main() {
// This is just a placeholder, I will run the engine via CLI.
}