File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ impl<T: Clone + DeserializeOwned + Serialize> BField<T> {
2929 /// [parameter selection notebook](https://github.com/onecodex/rust-bfield/blob/main/docs/notebook/calculate-parameters.ipynb)
3030 /// for helpful guidance in picking optimal parameters.
3131 /// - `size` is the primary `BField` size, subsequent `BField` sizes will be determined
32- /// by the `secondary_scaledown` and `max_scaledown` parameters
32+ /// by the `secondary_scaledown` and `max_scaledown` parameters
3333 /// - `n_hashes`. The number of hash functions _k_ to use.
3434 /// - `marker_width` or v (nu). The length of the bit-string to use for
3535 /// - `n_marker_bits` or κ (kappa). The number of 1s to set in each v-length bit-string (also its Hamming weight).
3636 /// - `secondary_scaledown` or β (beta). The scaling factor to use for each subsequent `BField` size.
3737 /// - `max_scaledown`. A maximum scaling factor to use for secondary `BField` sizes, since β raised to the power of
38- /// `n_secondaries` can be impractically/needlessly small.
38+ /// `n_secondaries` can be impractically/needlessly small.
3939 /// - `n_secondaries`. The number of secondary `BField`s to create.
4040 /// - `in_memory`. Whether to create the `BField` in memory or on disk.
4141 #[ allow( clippy:: too_many_arguments) ]
Original file line number Diff line number Diff line change 11use std:: cell:: UnsafeCell ;
22use std:: cmp:: Ordering ;
3- #[ cfg( feature = "prefetching" ) ]
4- use std:: intrinsics;
53use std:: io;
64use std:: path:: { Path , PathBuf } ;
75
You can’t perform that action at this time.
0 commit comments