Skip to content

Commit

Permalink
Increase the number of locks
Browse files Browse the repository at this point in the history
  • Loading branch information
primenumber committed Nov 27, 2023
1 parent aac7a72 commit a59c783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use crate::engine::table::*;
use std::sync::Arc;

pub fn setup_default() -> SolveObj {
let res_cache = Arc::new(ResCacheTable::new(256, 65536));
let eval_cache = Arc::new(EvalCacheTable::new(256, 65536));
let res_cache = Arc::new(ResCacheTable::new(1024, 16384));
let eval_cache = Arc::new(EvalCacheTable::new(1024, 16384));
let evaluator = Arc::new(Evaluator::new("table-220710"));
let search_params = SearchParams {
reduce: false,
Expand Down

0 comments on commit a59c783

Please sign in to comment.