Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove float casting in
ntasks
calculation b/c using float division.
Was casting integer value as floats in calculation of `ntasks` and `min_task`, but as Trevor pointed out because we are using the floating point operator for division (`/`), this isn't really necessary. Removed the float casting to make the code a bit more legible.
- Loading branch information