fix: Fix error in random polynomial generation in edf
Upper bound wa incorrect
This commit is contained in:
parent
e2ef29bfd5
commit
e8f4a58732
2 changed files with 15 additions and 10 deletions
|
|
@ -234,7 +234,7 @@ pub fn task_distribute_st(testcases: &Testcases) -> Result<Responses> {
|
|||
|
||||
pub fn task_distribute(testcases: &Testcases) -> Result<Responses> {
|
||||
let cpus = num_cpus::get();
|
||||
if cpus > 1000000 {
|
||||
if cpus > 100000 {
|
||||
task_distribute_mt(testcases)
|
||||
} else {
|
||||
task_distribute_st(testcases)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue