Nicolas Winkler 3 vuotta sitten
vanhempi
commit
347ec42b9a
1 muutettua tiedostoa jossa 1 lisäystä ja 3 poistoa
  1. 1 3
      src/main.rs

+ 1 - 3
src/main.rs

@@ -28,14 +28,12 @@ fn main() {
         .init();
         */
     
-    let logfile = File::create("/home/nicolas/debug.log").unwrap();
+    let logfile = File::create("C:\\Users\\Nicolas\\debug.log").unwrap();
     simplelog::WriteLogger::init(LevelFilter::Info, Config::default(), logfile).unwrap();
 
     let (esend, erecv) = mpsc::channel();
     let (isend, irecv) = mpsc::channel();
 
-    let zt = zobrist::ZobristTable::new();
-
     // spawn engine thread
     thread::spawn(move || {
         let mut engine = Engine::new(erecv, isend);