Nicolas Winkler %!s(int64=3) %!d(string=hai) anos
pai
achega
347ec42b9a
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  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);