fast-jewelry-98070
05/21/2023, 11:31 PMcooc_multicore.py, why is this line here https://github.com/outerbounds/dsbook/blob/d84ad6e98feb9bd6bf683eed6bc43f855b0c16f8/chapter-5/cooc_multicore.py#LL24C12-L24C12 necessary? I thought compute_cooc_multicore already calls fast_cooc in parallel, so we shouldn't need to actually call fast_cooc on the matrix before compute_cooc_multicore? Or am I misunderstanding something?victorious-lawyer-58417
05/22/2023, 1:11 AMcompute_cooc_multicore calls fast_cooc here https://github.com/outerbounds/dsbook/blob/d84ad6e98feb9bd6bf683eed6bc43f855b0c16f8/chapter-5/cooc_multicore.py#L12
so line 24 seems superfluous! #willfix