Skip to content

Commit

Permalink
👌 IMP: Remove unused args
Browse files Browse the repository at this point in the history
  • Loading branch information
ianagbip1oti committed Jan 10, 2024
1 parent c760aff commit 97379ec
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 45 deletions.
7 changes: 0 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ path = "src/main.rs"
[dependencies]
arc-swap = "=1.6.0"
arrayvec = "=0.7.4"
argparse = "=0.2.2"
dashmap = "=5.5.3"
fastapprox = "=0.3.1"
nohash-hasher = "=0.2.0"
Expand Down
29 changes: 0 additions & 29 deletions src/args.rs

This file was deleted.

8 changes: 0 additions & 8 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ extern crate nohash_hasher;
extern crate once_cell;

mod arena;
mod args;
mod chess;
mod evaluation;
mod math;
Expand All @@ -25,12 +24,5 @@ mod tree_policy;
mod uci;

fn main() {
args::init();
let options = args::options();

if let Some(ref syzygy_path) = options.syzygy_path {
tablebase::set_tablebase_directory(syzygy_path);
}

uci::main();
}

0 comments on commit 97379ec

Please sign in to comment.