Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kernel/bdgl_sieve.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct atomic_size_t_wrapper
CACHELINE_PAD(pad);
};

inline bool compare_QEntry(QEntry const& lhs, QEntry const& rhs) { return lhs.len > rhs.len; }
inline bool compare_QEntry(QEntry const& lhs, QEntry const& rhs) { return lhs.len < rhs.len; }

std::pair<LFT, int8_t> Siever::reduce_to_QEntry(CompressedEntry *ce1, CompressedEntry *ce2)
{
Expand Down