| 592 | |
| 593 | public: |
| 594 | CSCPageSource(float missing, int nthreads, bst_feature_t n_features, uint32_t n_batches, |
| 595 | std::shared_ptr<Cache> cache, std::shared_ptr<SparsePageSource> source) |
| 596 | : PageSourceIncMixIn(missing, nthreads, n_features, n_batches, cache, true) { |
| 597 | this->source_ = source; |
| 598 | this->Fetch(); |
| 599 | } |
| 600 | }; |
| 601 | |
| 602 | class SortedCSCPageSource : public PageSourceIncMixIn<SortedCSCPage> { |