Skip to main content

hermes_core/structures/postings/sparse/
block.rs

1//! Block-based sparse posting list with 3 sub-blocks
2//!
3//! Format per block (128 entries for SIMD alignment):
4//! - Doc IDs: delta-encoded, bit-packed
5//! - Ordinals: bit-packed small integers (lazy decode)
6//! - Weights: quantized (f32/f16/u8/u4)
7
8use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
9use std::io::{self, Cursor, Read, Write};
10
11use super::config::WeightQuantization;
12use crate::DocId;
13use crate::structures::postings::TERMINATED;
14use crate::structures::simd;
15
16pub const BLOCK_SIZE: usize = 128;
17
18#[derive(Debug, Clone, Copy)]
19pub struct BlockHeader {
20    pub count: u16,
21    pub doc_id_bits: u8,
22    pub ordinal_bits: u8,
23    pub weight_quant: WeightQuantization,
24    pub first_doc_id: DocId,
25    pub max_weight: f32,
26}
27
28impl BlockHeader {
29    pub const SIZE: usize = 16;
30
31    pub fn write<W: Write>(&self, w: &mut W) -> io::Result<()> {
32        w.write_u16::<LittleEndian>(self.count)?;
33        w.write_u8(self.doc_id_bits)?;
34        w.write_u8(self.ordinal_bits)?;
35        w.write_u8(self.weight_quant as u8)?;
36        w.write_u8(0)?;
37        w.write_u16::<LittleEndian>(0)?;
38        w.write_u32::<LittleEndian>(self.first_doc_id)?;
39        w.write_f32::<LittleEndian>(self.max_weight)?;
40        Ok(())
41    }
42
43    pub fn read<R: Read>(r: &mut R) -> io::Result<Self> {
44        let count = r.read_u16::<LittleEndian>()?;
45        let doc_id_bits = r.read_u8()?;
46        let ordinal_bits = r.read_u8()?;
47        let weight_quant_byte = r.read_u8()?;
48        let _ = r.read_u8()?;
49        let _ = r.read_u16::<LittleEndian>()?;
50        let first_doc_id = r.read_u32::<LittleEndian>()?;
51        let max_weight = r.read_f32::<LittleEndian>()?;
52
53        let weight_quant = WeightQuantization::from_u8(weight_quant_byte)
54            .ok_or_else(|| io::Error::new(io::ErrorKind::InvalidData, "Invalid weight quant"))?;
55
56        Ok(Self {
57            count,
58            doc_id_bits,
59            ordinal_bits,
60            weight_quant,
61            first_doc_id,
62            max_weight,
63        })
64    }
65}
66
67#[derive(Debug, Clone)]
68pub struct SparseBlock {
69    pub header: BlockHeader,
70    pub doc_ids_data: Vec<u8>,
71    pub ordinals_data: Vec<u8>,
72    pub weights_data: Vec<u8>,
73}
74
75impl SparseBlock {
76    pub fn from_postings(
77        postings: &[(DocId, u16, f32)],
78        weight_quant: WeightQuantization,
79    ) -> io::Result<Self> {
80        assert!(!postings.is_empty() && postings.len() <= BLOCK_SIZE);
81
82        let count = postings.len();
83        let first_doc_id = postings[0].0;
84
85        // Delta encode doc IDs
86        let mut deltas = Vec::with_capacity(count);
87        let mut prev = first_doc_id;
88        for &(doc_id, _, _) in postings {
89            deltas.push(doc_id.saturating_sub(prev));
90            prev = doc_id;
91        }
92        deltas[0] = 0;
93
94        let doc_id_bits = find_optimal_bit_width(&deltas[1..]);
95        let ordinals: Vec<u16> = postings.iter().map(|(_, o, _)| *o).collect();
96        let max_ordinal = ordinals.iter().copied().max().unwrap_or(0);
97        let ordinal_bits = if max_ordinal == 0 {
98            0
99        } else {
100            bits_needed_u16(max_ordinal)
101        };
102
103        let weights: Vec<f32> = postings.iter().map(|(_, _, w)| *w).collect();
104        let max_weight = weights.iter().copied().fold(0.0f32, f32::max);
105
106        let doc_ids_data = pack_bit_array(&deltas[1..], doc_id_bits);
107        let ordinals_data = if ordinal_bits > 0 {
108            pack_bit_array_u16(&ordinals, ordinal_bits)
109        } else {
110            Vec::new()
111        };
112        let weights_data = encode_weights(&weights, weight_quant)?;
113
114        Ok(Self {
115            header: BlockHeader {
116                count: count as u16,
117                doc_id_bits,
118                ordinal_bits,
119                weight_quant,
120                first_doc_id,
121                max_weight,
122            },
123            doc_ids_data,
124            ordinals_data,
125            weights_data,
126        })
127    }
128
129    pub fn decode_doc_ids(&self) -> Vec<DocId> {
130        let count = self.header.count as usize;
131        let mut doc_ids = Vec::with_capacity(count);
132        doc_ids.push(self.header.first_doc_id);
133
134        if count > 1 {
135            let deltas = unpack_bit_array(&self.doc_ids_data, self.header.doc_id_bits, count - 1);
136            let mut prev = self.header.first_doc_id;
137            for delta in deltas {
138                prev += delta;
139                doc_ids.push(prev);
140            }
141        }
142        doc_ids
143    }
144
145    pub fn decode_ordinals(&self) -> Vec<u16> {
146        let count = self.header.count as usize;
147        if self.header.ordinal_bits == 0 {
148            vec![0u16; count]
149        } else {
150            unpack_bit_array_u16(&self.ordinals_data, self.header.ordinal_bits, count)
151        }
152    }
153
154    pub fn decode_weights(&self) -> Vec<f32> {
155        decode_weights(
156            &self.weights_data,
157            self.header.weight_quant,
158            self.header.count as usize,
159        )
160    }
161
162    pub fn write<W: Write>(&self, w: &mut W) -> io::Result<()> {
163        self.header.write(w)?;
164        w.write_u16::<LittleEndian>(self.doc_ids_data.len() as u16)?;
165        w.write_u16::<LittleEndian>(self.ordinals_data.len() as u16)?;
166        w.write_u16::<LittleEndian>(self.weights_data.len() as u16)?;
167        w.write_u16::<LittleEndian>(0)?;
168        w.write_all(&self.doc_ids_data)?;
169        w.write_all(&self.ordinals_data)?;
170        w.write_all(&self.weights_data)?;
171        Ok(())
172    }
173
174    pub fn read<R: Read>(r: &mut R) -> io::Result<Self> {
175        let header = BlockHeader::read(r)?;
176        let doc_ids_len = r.read_u16::<LittleEndian>()? as usize;
177        let ordinals_len = r.read_u16::<LittleEndian>()? as usize;
178        let weights_len = r.read_u16::<LittleEndian>()? as usize;
179        let _ = r.read_u16::<LittleEndian>()?;
180
181        let mut doc_ids_data = vec![0u8; doc_ids_len];
182        r.read_exact(&mut doc_ids_data)?;
183        let mut ordinals_data = vec![0u8; ordinals_len];
184        r.read_exact(&mut ordinals_data)?;
185        let mut weights_data = vec![0u8; weights_len];
186        r.read_exact(&mut weights_data)?;
187
188        Ok(Self {
189            header,
190            doc_ids_data,
191            ordinals_data,
192            weights_data,
193        })
194    }
195
196    /// Create a copy of this block with first_doc_id adjusted by offset.
197    ///
198    /// This is used during merge to remap doc_ids from different segments.
199    /// Only the first_doc_id needs adjustment - deltas within the block
200    /// remain unchanged since they're relative to the previous doc.
201    pub fn with_doc_offset(&self, doc_offset: u32) -> Self {
202        Self {
203            header: BlockHeader {
204                first_doc_id: self.header.first_doc_id + doc_offset,
205                ..self.header
206            },
207            doc_ids_data: self.doc_ids_data.clone(),
208            ordinals_data: self.ordinals_data.clone(),
209            weights_data: self.weights_data.clone(),
210        }
211    }
212}
213
214// ============================================================================
215// BlockSparsePostingList
216// ============================================================================
217
218#[derive(Debug, Clone)]
219pub struct BlockSparsePostingList {
220    pub doc_count: u32,
221    pub blocks: Vec<SparseBlock>,
222}
223
224impl BlockSparsePostingList {
225    /// Create from postings with configurable block size
226    pub fn from_postings_with_block_size(
227        postings: &[(DocId, u16, f32)],
228        weight_quant: WeightQuantization,
229        block_size: usize,
230    ) -> io::Result<Self> {
231        if postings.is_empty() {
232            return Ok(Self {
233                doc_count: 0,
234                blocks: Vec::new(),
235            });
236        }
237
238        let block_size = block_size.max(16); // minimum 16 for sanity
239        let mut blocks = Vec::new();
240        for chunk in postings.chunks(block_size) {
241            blocks.push(SparseBlock::from_postings(chunk, weight_quant)?);
242        }
243
244        // Count unique document IDs (not total postings).
245        // For multi-value fields, the same doc_id appears multiple times
246        // with different ordinals. Postings are sorted by (doc_id, ordinal),
247        // so we count transitions.
248        let mut unique_docs = 1u32;
249        for i in 1..postings.len() {
250            if postings[i].0 != postings[i - 1].0 {
251                unique_docs += 1;
252            }
253        }
254
255        Ok(Self {
256            doc_count: unique_docs,
257            blocks,
258        })
259    }
260
261    /// Create from postings with default block size (128)
262    pub fn from_postings(
263        postings: &[(DocId, u16, f32)],
264        weight_quant: WeightQuantization,
265    ) -> io::Result<Self> {
266        Self::from_postings_with_block_size(postings, weight_quant, BLOCK_SIZE)
267    }
268
269    pub fn doc_count(&self) -> u32 {
270        self.doc_count
271    }
272
273    pub fn num_blocks(&self) -> usize {
274        self.blocks.len()
275    }
276
277    pub fn global_max_weight(&self) -> f32 {
278        self.blocks
279            .iter()
280            .map(|b| b.header.max_weight)
281            .fold(0.0f32, f32::max)
282    }
283
284    pub fn block_max_weight(&self, block_idx: usize) -> Option<f32> {
285        self.blocks.get(block_idx).map(|b| b.header.max_weight)
286    }
287
288    /// Approximate memory usage in bytes
289    pub fn size_bytes(&self) -> usize {
290        use std::mem::size_of;
291
292        let header_size = size_of::<u32>() * 2; // doc_count + num_blocks
293        let blocks_size: usize = self
294            .blocks
295            .iter()
296            .map(|b| {
297                size_of::<BlockHeader>()
298                    + b.doc_ids_data.len()
299                    + b.ordinals_data.len()
300                    + b.weights_data.len()
301            })
302            .sum();
303        header_size + blocks_size
304    }
305
306    pub fn iterator(&self) -> BlockSparsePostingIterator<'_> {
307        BlockSparsePostingIterator::new(self)
308    }
309
310    /// Serialize with skip list header for lazy loading
311    ///
312    /// Format:
313    /// - doc_count: u32
314    /// - global_max_weight: f32
315    /// - num_blocks: u32
316    /// - skip_list: [SparseSkipEntry] × num_blocks (first_doc, last_doc, offset, length, max_weight)
317    /// - block_data: concatenated SparseBlock data
318    pub fn serialize<W: Write>(&self, w: &mut W) -> io::Result<()> {
319        use super::SparseSkipEntry;
320
321        w.write_u32::<LittleEndian>(self.doc_count)?;
322        w.write_f32::<LittleEndian>(self.global_max_weight())?;
323        w.write_u32::<LittleEndian>(self.blocks.len() as u32)?;
324
325        // First pass: serialize blocks to get their sizes
326        let mut block_bytes: Vec<Vec<u8>> = Vec::with_capacity(self.blocks.len());
327        for block in &self.blocks {
328            let mut buf = Vec::new();
329            block.write(&mut buf)?;
330            block_bytes.push(buf);
331        }
332
333        // Write skip list entries
334        let mut offset = 0u32;
335        for (block, bytes) in self.blocks.iter().zip(block_bytes.iter()) {
336            let doc_ids = block.decode_doc_ids();
337            let first_doc = doc_ids.first().copied().unwrap_or(0);
338            let last_doc = doc_ids.last().copied().unwrap_or(0);
339            let length = bytes.len() as u32;
340
341            let entry =
342                SparseSkipEntry::new(first_doc, last_doc, offset, length, block.header.max_weight);
343            entry.write(w)?;
344            offset += length;
345        }
346
347        // Write block data
348        for bytes in block_bytes {
349            w.write_all(&bytes)?;
350        }
351
352        Ok(())
353    }
354
355    /// Deserialize fully (loads all blocks into memory)
356    /// For lazy loading, use deserialize_header() + load_block()
357    pub fn deserialize<R: Read>(r: &mut R) -> io::Result<Self> {
358        use super::SparseSkipEntry;
359
360        let doc_count = r.read_u32::<LittleEndian>()?;
361        let _global_max_weight = r.read_f32::<LittleEndian>()?;
362        let num_blocks = r.read_u32::<LittleEndian>()? as usize;
363
364        // Skip the skip list entries
365        for _ in 0..num_blocks {
366            let _ = SparseSkipEntry::read(r)?;
367        }
368
369        // Read all blocks
370        let mut blocks = Vec::with_capacity(num_blocks);
371        for _ in 0..num_blocks {
372            blocks.push(SparseBlock::read(r)?);
373        }
374        Ok(Self { doc_count, blocks })
375    }
376
377    /// Deserialize only the skip list header (for lazy loading)
378    /// Returns (doc_count, global_max_weight, skip_entries, header_size)
379    pub fn deserialize_header<R: Read>(
380        r: &mut R,
381    ) -> io::Result<(u32, f32, Vec<super::SparseSkipEntry>, usize)> {
382        use super::SparseSkipEntry;
383
384        let doc_count = r.read_u32::<LittleEndian>()?;
385        let global_max_weight = r.read_f32::<LittleEndian>()?;
386        let num_blocks = r.read_u32::<LittleEndian>()? as usize;
387
388        let mut entries = Vec::with_capacity(num_blocks);
389        for _ in 0..num_blocks {
390            entries.push(SparseSkipEntry::read(r)?);
391        }
392
393        // Header size: 4 + 4 + 4 + num_blocks * SparseSkipEntry::SIZE
394        let header_size = 4 + 4 + 4 + num_blocks * SparseSkipEntry::SIZE;
395
396        Ok((doc_count, global_max_weight, entries, header_size))
397    }
398
399    pub fn decode_all(&self) -> Vec<(DocId, u16, f32)> {
400        let mut result = Vec::with_capacity(self.doc_count as usize);
401        for block in &self.blocks {
402            let doc_ids = block.decode_doc_ids();
403            let ordinals = block.decode_ordinals();
404            let weights = block.decode_weights();
405            for i in 0..block.header.count as usize {
406                result.push((doc_ids[i], ordinals[i], weights[i]));
407            }
408        }
409        result
410    }
411
412    /// Merge multiple posting lists from different segments with doc_id offsets.
413    ///
414    /// This is an optimized O(1) merge that stacks blocks without decode/re-encode.
415    /// Each posting list's blocks have their first_doc_id adjusted by the corresponding offset.
416    ///
417    /// # Arguments
418    /// * `lists` - Slice of (posting_list, doc_offset) pairs from each segment
419    ///
420    /// # Returns
421    /// A new posting list with all blocks concatenated and doc_ids remapped
422    pub fn merge_with_offsets(lists: &[(&BlockSparsePostingList, u32)]) -> Self {
423        if lists.is_empty() {
424            return Self {
425                doc_count: 0,
426                blocks: Vec::new(),
427            };
428        }
429
430        // Pre-calculate total capacity
431        let total_blocks: usize = lists.iter().map(|(pl, _)| pl.blocks.len()).sum();
432        let total_docs: u32 = lists.iter().map(|(pl, _)| pl.doc_count).sum();
433
434        let mut merged_blocks = Vec::with_capacity(total_blocks);
435
436        // Stack blocks from each segment with doc_id offset adjustment
437        for (posting_list, doc_offset) in lists {
438            for block in &posting_list.blocks {
439                merged_blocks.push(block.with_doc_offset(*doc_offset));
440            }
441        }
442
443        Self {
444            doc_count: total_docs,
445            blocks: merged_blocks,
446        }
447    }
448
449    fn find_block(&self, target: DocId) -> Option<usize> {
450        let mut lo = 0;
451        let mut hi = self.blocks.len();
452        while lo < hi {
453            let mid = lo + (hi - lo) / 2;
454            let block = &self.blocks[mid];
455            let doc_ids = block.decode_doc_ids();
456            let last_doc = doc_ids.last().copied().unwrap_or(block.header.first_doc_id);
457            if last_doc < target {
458                lo = mid + 1;
459            } else {
460                hi = mid;
461            }
462        }
463        if lo < self.blocks.len() {
464            Some(lo)
465        } else {
466            None
467        }
468    }
469}
470
471// ============================================================================
472// Iterator
473// ============================================================================
474
475pub struct BlockSparsePostingIterator<'a> {
476    posting_list: &'a BlockSparsePostingList,
477    block_idx: usize,
478    in_block_idx: usize,
479    current_doc_ids: Vec<DocId>,
480    current_weights: Vec<f32>,
481    exhausted: bool,
482}
483
484impl<'a> BlockSparsePostingIterator<'a> {
485    fn new(posting_list: &'a BlockSparsePostingList) -> Self {
486        let mut iter = Self {
487            posting_list,
488            block_idx: 0,
489            in_block_idx: 0,
490            current_doc_ids: Vec::new(),
491            current_weights: Vec::new(),
492            exhausted: posting_list.blocks.is_empty(),
493        };
494        if !iter.exhausted {
495            iter.load_block(0);
496        }
497        iter
498    }
499
500    fn load_block(&mut self, block_idx: usize) {
501        if let Some(block) = self.posting_list.blocks.get(block_idx) {
502            self.current_doc_ids = block.decode_doc_ids();
503            self.current_weights = block.decode_weights();
504            self.block_idx = block_idx;
505            self.in_block_idx = 0;
506        }
507    }
508
509    pub fn doc(&self) -> DocId {
510        if self.exhausted {
511            TERMINATED
512        } else {
513            self.current_doc_ids
514                .get(self.in_block_idx)
515                .copied()
516                .unwrap_or(TERMINATED)
517        }
518    }
519
520    pub fn weight(&self) -> f32 {
521        self.current_weights
522            .get(self.in_block_idx)
523            .copied()
524            .unwrap_or(0.0)
525    }
526
527    pub fn ordinal(&self) -> u16 {
528        if let Some(block) = self.posting_list.blocks.get(self.block_idx) {
529            let ordinals = block.decode_ordinals();
530            ordinals.get(self.in_block_idx).copied().unwrap_or(0)
531        } else {
532            0
533        }
534    }
535
536    pub fn advance(&mut self) -> DocId {
537        if self.exhausted {
538            return TERMINATED;
539        }
540        self.in_block_idx += 1;
541        if self.in_block_idx >= self.current_doc_ids.len() {
542            self.block_idx += 1;
543            if self.block_idx >= self.posting_list.blocks.len() {
544                self.exhausted = true;
545            } else {
546                self.load_block(self.block_idx);
547            }
548        }
549        self.doc()
550    }
551
552    pub fn seek(&mut self, target: DocId) -> DocId {
553        if self.exhausted {
554            return TERMINATED;
555        }
556        if self.doc() >= target {
557            return self.doc();
558        }
559
560        // Check current block
561        if let Some(&last_doc) = self.current_doc_ids.last()
562            && last_doc >= target
563        {
564            while !self.exhausted && self.doc() < target {
565                self.in_block_idx += 1;
566                if self.in_block_idx >= self.current_doc_ids.len() {
567                    self.block_idx += 1;
568                    if self.block_idx >= self.posting_list.blocks.len() {
569                        self.exhausted = true;
570                    } else {
571                        self.load_block(self.block_idx);
572                    }
573                }
574            }
575            return self.doc();
576        }
577
578        // Find correct block
579        if let Some(block_idx) = self.posting_list.find_block(target) {
580            self.load_block(block_idx);
581            while self.in_block_idx < self.current_doc_ids.len()
582                && self.current_doc_ids[self.in_block_idx] < target
583            {
584                self.in_block_idx += 1;
585            }
586            if self.in_block_idx >= self.current_doc_ids.len() {
587                self.block_idx += 1;
588                if self.block_idx >= self.posting_list.blocks.len() {
589                    self.exhausted = true;
590                } else {
591                    self.load_block(self.block_idx);
592                }
593            }
594        } else {
595            self.exhausted = true;
596        }
597        self.doc()
598    }
599
600    /// Skip to the start of the next block, returning its first doc_id.
601    /// Used by block-max WAND to skip entire blocks that can't beat threshold.
602    pub fn skip_to_next_block(&mut self) -> DocId {
603        if self.exhausted {
604            return TERMINATED;
605        }
606        let next = self.block_idx + 1;
607        if next >= self.posting_list.blocks.len() {
608            self.exhausted = true;
609            return TERMINATED;
610        }
611        self.load_block(next);
612        self.doc()
613    }
614
615    pub fn is_exhausted(&self) -> bool {
616        self.exhausted
617    }
618
619    pub fn current_block_max_weight(&self) -> f32 {
620        self.posting_list
621            .blocks
622            .get(self.block_idx)
623            .map(|b| b.header.max_weight)
624            .unwrap_or(0.0)
625    }
626
627    pub fn current_block_max_contribution(&self, query_weight: f32) -> f32 {
628        query_weight * self.current_block_max_weight()
629    }
630}
631
632// ============================================================================
633// Bit-packing utilities
634// ============================================================================
635
636fn find_optimal_bit_width(values: &[u32]) -> u8 {
637    if values.is_empty() {
638        return 0;
639    }
640    let max_val = values.iter().copied().max().unwrap_or(0);
641    simd::bits_needed(max_val)
642}
643
644fn bits_needed_u16(val: u16) -> u8 {
645    if val == 0 {
646        0
647    } else {
648        16 - val.leading_zeros() as u8
649    }
650}
651
652fn pack_bit_array(values: &[u32], bits: u8) -> Vec<u8> {
653    if bits == 0 || values.is_empty() {
654        return Vec::new();
655    }
656    let total_bytes = (values.len() * bits as usize).div_ceil(8);
657    let mut result = vec![0u8; total_bytes];
658    let mut bit_pos = 0usize;
659    for &val in values {
660        pack_value(&mut result, bit_pos, val & ((1u32 << bits) - 1), bits);
661        bit_pos += bits as usize;
662    }
663    result
664}
665
666fn pack_bit_array_u16(values: &[u16], bits: u8) -> Vec<u8> {
667    if bits == 0 || values.is_empty() {
668        return Vec::new();
669    }
670    let total_bytes = (values.len() * bits as usize).div_ceil(8);
671    let mut result = vec![0u8; total_bytes];
672    let mut bit_pos = 0usize;
673    for &val in values {
674        pack_value(
675            &mut result,
676            bit_pos,
677            (val as u32) & ((1u32 << bits) - 1),
678            bits,
679        );
680        bit_pos += bits as usize;
681    }
682    result
683}
684
685#[inline]
686fn pack_value(data: &mut [u8], bit_pos: usize, val: u32, bits: u8) {
687    let mut remaining = bits as usize;
688    let mut val = val;
689    let mut byte = bit_pos / 8;
690    let mut offset = bit_pos % 8;
691    while remaining > 0 {
692        let space = 8 - offset;
693        let to_write = remaining.min(space);
694        let mask = (1u32 << to_write) - 1;
695        data[byte] |= ((val & mask) as u8) << offset;
696        val >>= to_write;
697        remaining -= to_write;
698        byte += 1;
699        offset = 0;
700    }
701}
702
703fn unpack_bit_array(data: &[u8], bits: u8, count: usize) -> Vec<u32> {
704    if bits == 0 || count == 0 {
705        return vec![0; count];
706    }
707    let mut result = Vec::with_capacity(count);
708    let mut bit_pos = 0usize;
709    for _ in 0..count {
710        result.push(unpack_value(data, bit_pos, bits));
711        bit_pos += bits as usize;
712    }
713    result
714}
715
716fn unpack_bit_array_u16(data: &[u8], bits: u8, count: usize) -> Vec<u16> {
717    if bits == 0 || count == 0 {
718        return vec![0; count];
719    }
720    let mut result = Vec::with_capacity(count);
721    let mut bit_pos = 0usize;
722    for _ in 0..count {
723        result.push(unpack_value(data, bit_pos, bits) as u16);
724        bit_pos += bits as usize;
725    }
726    result
727}
728
729#[inline]
730fn unpack_value(data: &[u8], bit_pos: usize, bits: u8) -> u32 {
731    let mut val = 0u32;
732    let mut remaining = bits as usize;
733    let mut byte = bit_pos / 8;
734    let mut offset = bit_pos % 8;
735    let mut shift = 0;
736    while remaining > 0 {
737        let space = 8 - offset;
738        let to_read = remaining.min(space);
739        let mask = (1u8 << to_read) - 1;
740        val |= (((data.get(byte).copied().unwrap_or(0) >> offset) & mask) as u32) << shift;
741        remaining -= to_read;
742        shift += to_read;
743        byte += 1;
744        offset = 0;
745    }
746    val
747}
748
749// ============================================================================
750// Weight encoding/decoding
751// ============================================================================
752
753fn encode_weights(weights: &[f32], quant: WeightQuantization) -> io::Result<Vec<u8>> {
754    let mut data = Vec::new();
755    match quant {
756        WeightQuantization::Float32 => {
757            for &w in weights {
758                data.write_f32::<LittleEndian>(w)?;
759            }
760        }
761        WeightQuantization::Float16 => {
762            use half::f16;
763            for &w in weights {
764                data.write_u16::<LittleEndian>(f16::from_f32(w).to_bits())?;
765            }
766        }
767        WeightQuantization::UInt8 => {
768            let min = weights.iter().copied().fold(f32::INFINITY, f32::min);
769            let max = weights.iter().copied().fold(f32::NEG_INFINITY, f32::max);
770            let range = max - min;
771            let scale = if range < f32::EPSILON {
772                1.0
773            } else {
774                range / 255.0
775            };
776            data.write_f32::<LittleEndian>(scale)?;
777            data.write_f32::<LittleEndian>(min)?;
778            for &w in weights {
779                data.write_u8(((w - min) / scale).round() as u8)?;
780            }
781        }
782        WeightQuantization::UInt4 => {
783            let min = weights.iter().copied().fold(f32::INFINITY, f32::min);
784            let max = weights.iter().copied().fold(f32::NEG_INFINITY, f32::max);
785            let range = max - min;
786            let scale = if range < f32::EPSILON {
787                1.0
788            } else {
789                range / 15.0
790            };
791            data.write_f32::<LittleEndian>(scale)?;
792            data.write_f32::<LittleEndian>(min)?;
793            let mut i = 0;
794            while i < weights.len() {
795                let q1 = ((weights[i] - min) / scale).round() as u8 & 0x0F;
796                let q2 = if i + 1 < weights.len() {
797                    ((weights[i + 1] - min) / scale).round() as u8 & 0x0F
798                } else {
799                    0
800                };
801                data.write_u8((q2 << 4) | q1)?;
802                i += 2;
803            }
804        }
805    }
806    Ok(data)
807}
808
809fn decode_weights(data: &[u8], quant: WeightQuantization, count: usize) -> Vec<f32> {
810    let mut cursor = Cursor::new(data);
811    let mut weights = Vec::with_capacity(count);
812    match quant {
813        WeightQuantization::Float32 => {
814            for _ in 0..count {
815                weights.push(cursor.read_f32::<LittleEndian>().unwrap_or(0.0));
816            }
817        }
818        WeightQuantization::Float16 => {
819            use half::f16;
820            for _ in 0..count {
821                let bits = cursor.read_u16::<LittleEndian>().unwrap_or(0);
822                weights.push(f16::from_bits(bits).to_f32());
823            }
824        }
825        WeightQuantization::UInt8 => {
826            let scale = cursor.read_f32::<LittleEndian>().unwrap_or(1.0);
827            let min = cursor.read_f32::<LittleEndian>().unwrap_or(0.0);
828            for _ in 0..count {
829                let q = cursor.read_u8().unwrap_or(0);
830                weights.push(q as f32 * scale + min);
831            }
832        }
833        WeightQuantization::UInt4 => {
834            let scale = cursor.read_f32::<LittleEndian>().unwrap_or(1.0);
835            let min = cursor.read_f32::<LittleEndian>().unwrap_or(0.0);
836            let mut i = 0;
837            while i < count {
838                let byte = cursor.read_u8().unwrap_or(0);
839                weights.push((byte & 0x0F) as f32 * scale + min);
840                i += 1;
841                if i < count {
842                    weights.push((byte >> 4) as f32 * scale + min);
843                    i += 1;
844                }
845            }
846        }
847    }
848    weights
849}
850
851#[cfg(test)]
852mod tests {
853    use super::*;
854
855    #[test]
856    fn test_block_roundtrip() {
857        let postings = vec![
858            (10u32, 0u16, 1.5f32),
859            (15, 0, 2.0),
860            (20, 1, 0.5),
861            (100, 0, 3.0),
862        ];
863        let block = SparseBlock::from_postings(&postings, WeightQuantization::Float32).unwrap();
864
865        assert_eq!(block.decode_doc_ids(), vec![10, 15, 20, 100]);
866        assert_eq!(block.decode_ordinals(), vec![0, 0, 1, 0]);
867        let weights = block.decode_weights();
868        assert!((weights[0] - 1.5).abs() < 0.01);
869    }
870
871    #[test]
872    fn test_posting_list() {
873        let postings: Vec<(DocId, u16, f32)> =
874            (0..300).map(|i| (i * 2, 0, i as f32 * 0.1)).collect();
875        let list =
876            BlockSparsePostingList::from_postings(&postings, WeightQuantization::Float32).unwrap();
877
878        assert_eq!(list.doc_count(), 300);
879        assert_eq!(list.num_blocks(), 3);
880
881        let mut iter = list.iterator();
882        assert_eq!(iter.doc(), 0);
883        iter.advance();
884        assert_eq!(iter.doc(), 2);
885    }
886
887    #[test]
888    fn test_serialization() {
889        let postings = vec![(1u32, 0u16, 0.5f32), (10, 1, 1.5), (100, 0, 2.5)];
890        let list =
891            BlockSparsePostingList::from_postings(&postings, WeightQuantization::UInt8).unwrap();
892
893        let mut buf = Vec::new();
894        list.serialize(&mut buf).unwrap();
895        let list2 = BlockSparsePostingList::deserialize(&mut Cursor::new(&buf)).unwrap();
896
897        assert_eq!(list.doc_count(), list2.doc_count());
898    }
899
900    #[test]
901    fn test_seek() {
902        let postings: Vec<(DocId, u16, f32)> = (0..500).map(|i| (i * 3, 0, i as f32)).collect();
903        let list =
904            BlockSparsePostingList::from_postings(&postings, WeightQuantization::Float32).unwrap();
905
906        let mut iter = list.iterator();
907        assert_eq!(iter.seek(300), 300);
908        assert_eq!(iter.seek(301), 303);
909        assert_eq!(iter.seek(2000), TERMINATED);
910    }
911
912    #[test]
913    fn test_merge_with_offsets() {
914        // Segment 1: docs 0, 5, 10 with weights
915        let postings1: Vec<(DocId, u16, f32)> = vec![(0, 0, 1.0), (5, 0, 2.0), (10, 1, 3.0)];
916        let list1 =
917            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
918
919        // Segment 2: docs 0, 3, 7 with weights (will become 100, 103, 107 after merge)
920        let postings2: Vec<(DocId, u16, f32)> = vec![(0, 0, 4.0), (3, 1, 5.0), (7, 0, 6.0)];
921        let list2 =
922            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
923
924        // Merge with offsets: segment 1 at offset 0, segment 2 at offset 100
925        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 100)]);
926
927        assert_eq!(merged.doc_count(), 6);
928
929        // Verify all doc_ids are correct after merge
930        let decoded = merged.decode_all();
931        assert_eq!(decoded.len(), 6);
932
933        // Segment 1 docs (offset 0)
934        assert_eq!(decoded[0].0, 0);
935        assert_eq!(decoded[1].0, 5);
936        assert_eq!(decoded[2].0, 10);
937
938        // Segment 2 docs (offset 100)
939        assert_eq!(decoded[3].0, 100); // 0 + 100
940        assert_eq!(decoded[4].0, 103); // 3 + 100
941        assert_eq!(decoded[5].0, 107); // 7 + 100
942
943        // Verify weights preserved
944        assert!((decoded[0].2 - 1.0).abs() < 0.01);
945        assert!((decoded[3].2 - 4.0).abs() < 0.01);
946
947        // Verify ordinals preserved
948        assert_eq!(decoded[2].1, 1); // ordinal from segment 1
949        assert_eq!(decoded[4].1, 1); // ordinal from segment 2
950    }
951
952    #[test]
953    fn test_merge_with_offsets_multi_block() {
954        // Create posting lists that span multiple blocks
955        let postings1: Vec<(DocId, u16, f32)> = (0..200).map(|i| (i * 2, 0, i as f32)).collect();
956        let list1 =
957            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
958        assert!(list1.num_blocks() > 1, "Should have multiple blocks");
959
960        let postings2: Vec<(DocId, u16, f32)> = (0..150).map(|i| (i * 3, 1, i as f32)).collect();
961        let list2 =
962            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
963
964        // Merge with offset 1000 for segment 2
965        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 1000)]);
966
967        assert_eq!(merged.doc_count(), 350);
968        assert_eq!(merged.num_blocks(), list1.num_blocks() + list2.num_blocks());
969
970        // Verify via iterator
971        let mut iter = merged.iterator();
972
973        // First segment docs start at 0
974        assert_eq!(iter.doc(), 0);
975
976        // Seek to segment 2 (should be at offset 1000)
977        let doc = iter.seek(1000);
978        assert_eq!(doc, 1000); // First doc of segment 2: 0 + 1000 = 1000
979
980        // Next doc in segment 2
981        iter.advance();
982        assert_eq!(iter.doc(), 1003); // 3 + 1000 = 1003
983    }
984
985    #[test]
986    fn test_merge_with_offsets_serialize_roundtrip() {
987        // Verify that serialization preserves adjusted doc_ids
988        let postings1: Vec<(DocId, u16, f32)> = vec![(0, 0, 1.0), (5, 0, 2.0), (10, 1, 3.0)];
989        let list1 =
990            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
991
992        let postings2: Vec<(DocId, u16, f32)> = vec![(0, 0, 4.0), (3, 1, 5.0), (7, 0, 6.0)];
993        let list2 =
994            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
995
996        // Merge with offset 100 for segment 2
997        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 100)]);
998
999        // Serialize
1000        let mut bytes = Vec::new();
1001        merged.serialize(&mut bytes).unwrap();
1002
1003        // Deserialize
1004        let mut cursor = std::io::Cursor::new(&bytes);
1005        let loaded = BlockSparsePostingList::deserialize(&mut cursor).unwrap();
1006
1007        // Verify doc_ids are preserved after round-trip
1008        let decoded = loaded.decode_all();
1009        assert_eq!(decoded.len(), 6);
1010
1011        // Segment 1 docs (offset 0)
1012        assert_eq!(decoded[0].0, 0);
1013        assert_eq!(decoded[1].0, 5);
1014        assert_eq!(decoded[2].0, 10);
1015
1016        // Segment 2 docs (offset 100) - CRITICAL: these must be offset-adjusted
1017        assert_eq!(decoded[3].0, 100, "First doc of seg2 should be 0+100=100");
1018        assert_eq!(decoded[4].0, 103, "Second doc of seg2 should be 3+100=103");
1019        assert_eq!(decoded[5].0, 107, "Third doc of seg2 should be 7+100=107");
1020
1021        // Verify iterator also works correctly
1022        let mut iter = loaded.iterator();
1023        assert_eq!(iter.doc(), 0);
1024        iter.advance();
1025        assert_eq!(iter.doc(), 5);
1026        iter.advance();
1027        assert_eq!(iter.doc(), 10);
1028        iter.advance();
1029        assert_eq!(iter.doc(), 100);
1030        iter.advance();
1031        assert_eq!(iter.doc(), 103);
1032        iter.advance();
1033        assert_eq!(iter.doc(), 107);
1034    }
1035
1036    #[test]
1037    fn test_merge_seek_after_roundtrip() {
1038        // Create posting lists that span multiple blocks to test seek after merge
1039        let postings1: Vec<(DocId, u16, f32)> = (0..200).map(|i| (i * 2, 0, 1.0)).collect();
1040        let list1 =
1041            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
1042
1043        let postings2: Vec<(DocId, u16, f32)> = (0..150).map(|i| (i * 3, 0, 2.0)).collect();
1044        let list2 =
1045            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
1046
1047        // Merge with offset 1000 for segment 2
1048        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 1000)]);
1049
1050        // Serialize and deserialize (simulating what happens after merge file is written)
1051        let mut bytes = Vec::new();
1052        merged.serialize(&mut bytes).unwrap();
1053        let loaded =
1054            BlockSparsePostingList::deserialize(&mut std::io::Cursor::new(&bytes)).unwrap();
1055
1056        // Test seeking to various positions
1057        let mut iter = loaded.iterator();
1058
1059        // Seek to doc in segment 1
1060        let doc = iter.seek(100);
1061        assert_eq!(doc, 100, "Seek to 100 in segment 1");
1062
1063        // Seek to doc in segment 2 (1000 + offset)
1064        let doc = iter.seek(1000);
1065        assert_eq!(doc, 1000, "Seek to 1000 (first doc of segment 2)");
1066
1067        // Seek to middle of segment 2
1068        let doc = iter.seek(1050);
1069        assert!(
1070            doc >= 1050,
1071            "Seek to 1050 should find doc >= 1050, got {}",
1072            doc
1073        );
1074
1075        // Seek backwards should stay at current position (seek only goes forward)
1076        let doc = iter.seek(500);
1077        assert!(
1078            doc >= 1050,
1079            "Seek backwards should not go back, got {}",
1080            doc
1081        );
1082
1083        // Fresh iterator - verify block boundaries work
1084        let mut iter2 = loaded.iterator();
1085
1086        // Verify we can iterate through all docs
1087        let mut count = 0;
1088        let mut prev_doc = 0;
1089        while iter2.doc() != super::TERMINATED {
1090            let current = iter2.doc();
1091            if count > 0 {
1092                assert!(
1093                    current > prev_doc,
1094                    "Docs should be monotonically increasing: {} vs {}",
1095                    prev_doc,
1096                    current
1097                );
1098            }
1099            prev_doc = current;
1100            iter2.advance();
1101            count += 1;
1102        }
1103        assert_eq!(count, 350, "Should have 350 total docs");
1104    }
1105
1106    #[test]
1107    fn test_doc_count_multi_value() {
1108        // Multi-value: same doc_id with different ordinals
1109        // doc 0 has 3 ordinals, doc 5 has 2, doc 10 has 1 = 3 unique docs
1110        let postings: Vec<(DocId, u16, f32)> = vec![
1111            (0, 0, 1.0),
1112            (0, 1, 1.5),
1113            (0, 2, 2.0),
1114            (5, 0, 3.0),
1115            (5, 1, 3.5),
1116            (10, 0, 4.0),
1117        ];
1118        let list =
1119            BlockSparsePostingList::from_postings(&postings, WeightQuantization::Float32).unwrap();
1120
1121        // doc_count should be 3 (unique docs), not 6 (total postings)
1122        assert_eq!(list.doc_count(), 3);
1123
1124        // But we should still have all 6 postings accessible
1125        let decoded = list.decode_all();
1126        assert_eq!(decoded.len(), 6);
1127    }
1128
1129    #[test]
1130    fn test_doc_count_single_value() {
1131        // Single-value: each doc_id appears once (ordinal always 0)
1132        let postings: Vec<(DocId, u16, f32)> =
1133            vec![(0, 0, 1.0), (5, 0, 2.0), (10, 0, 3.0), (15, 0, 4.0)];
1134        let list =
1135            BlockSparsePostingList::from_postings(&postings, WeightQuantization::Float32).unwrap();
1136
1137        // doc_count == total postings for single-value
1138        assert_eq!(list.doc_count(), 4);
1139    }
1140
1141    #[test]
1142    fn test_doc_count_multi_value_serialization_roundtrip() {
1143        // Verify doc_count survives serialization
1144        let postings: Vec<(DocId, u16, f32)> =
1145            vec![(0, 0, 1.0), (0, 1, 1.5), (5, 0, 2.0), (5, 1, 2.5)];
1146        let list =
1147            BlockSparsePostingList::from_postings(&postings, WeightQuantization::Float32).unwrap();
1148        assert_eq!(list.doc_count(), 2);
1149
1150        let mut buf = Vec::new();
1151        list.serialize(&mut buf).unwrap();
1152        let loaded = BlockSparsePostingList::deserialize(&mut Cursor::new(&buf)).unwrap();
1153        assert_eq!(loaded.doc_count(), 2);
1154    }
1155
1156    #[test]
1157    fn test_merge_preserves_weights_and_ordinals() {
1158        // Test that weights and ordinals are preserved after merge + roundtrip
1159        let postings1: Vec<(DocId, u16, f32)> = vec![(0, 0, 1.5), (5, 1, 2.5), (10, 2, 3.5)];
1160        let list1 =
1161            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
1162
1163        let postings2: Vec<(DocId, u16, f32)> = vec![(0, 0, 4.5), (3, 1, 5.5), (7, 3, 6.5)];
1164        let list2 =
1165            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
1166
1167        // Merge with offset 100 for segment 2
1168        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 100)]);
1169
1170        // Serialize and deserialize
1171        let mut bytes = Vec::new();
1172        merged.serialize(&mut bytes).unwrap();
1173        let loaded =
1174            BlockSparsePostingList::deserialize(&mut std::io::Cursor::new(&bytes)).unwrap();
1175
1176        // Verify all postings via iterator
1177        let mut iter = loaded.iterator();
1178
1179        // Segment 1 postings
1180        assert_eq!(iter.doc(), 0);
1181        assert!(
1182            (iter.weight() - 1.5).abs() < 0.01,
1183            "Weight should be 1.5, got {}",
1184            iter.weight()
1185        );
1186        assert_eq!(iter.ordinal(), 0);
1187
1188        iter.advance();
1189        assert_eq!(iter.doc(), 5);
1190        assert!(
1191            (iter.weight() - 2.5).abs() < 0.01,
1192            "Weight should be 2.5, got {}",
1193            iter.weight()
1194        );
1195        assert_eq!(iter.ordinal(), 1);
1196
1197        iter.advance();
1198        assert_eq!(iter.doc(), 10);
1199        assert!(
1200            (iter.weight() - 3.5).abs() < 0.01,
1201            "Weight should be 3.5, got {}",
1202            iter.weight()
1203        );
1204        assert_eq!(iter.ordinal(), 2);
1205
1206        // Segment 2 postings (with offset 100)
1207        iter.advance();
1208        assert_eq!(iter.doc(), 100);
1209        assert!(
1210            (iter.weight() - 4.5).abs() < 0.01,
1211            "Weight should be 4.5, got {}",
1212            iter.weight()
1213        );
1214        assert_eq!(iter.ordinal(), 0);
1215
1216        iter.advance();
1217        assert_eq!(iter.doc(), 103);
1218        assert!(
1219            (iter.weight() - 5.5).abs() < 0.01,
1220            "Weight should be 5.5, got {}",
1221            iter.weight()
1222        );
1223        assert_eq!(iter.ordinal(), 1);
1224
1225        iter.advance();
1226        assert_eq!(iter.doc(), 107);
1227        assert!(
1228            (iter.weight() - 6.5).abs() < 0.01,
1229            "Weight should be 6.5, got {}",
1230            iter.weight()
1231        );
1232        assert_eq!(iter.ordinal(), 3);
1233
1234        // Verify exhausted
1235        iter.advance();
1236        assert_eq!(iter.doc(), super::TERMINATED);
1237    }
1238
1239    #[test]
1240    fn test_merge_global_max_weight() {
1241        // Verify global_max_weight is correct after merge
1242        let postings1: Vec<(DocId, u16, f32)> = vec![
1243            (0, 0, 3.0),
1244            (1, 0, 7.0), // max in segment 1
1245            (2, 0, 2.0),
1246        ];
1247        let list1 =
1248            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
1249
1250        let postings2: Vec<(DocId, u16, f32)> = vec![
1251            (0, 0, 5.0),
1252            (1, 0, 4.0),
1253            (2, 0, 6.0), // max in segment 2
1254        ];
1255        let list2 =
1256            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
1257
1258        // Verify original global max weights
1259        assert!((list1.global_max_weight() - 7.0).abs() < 0.01);
1260        assert!((list2.global_max_weight() - 6.0).abs() < 0.01);
1261
1262        // Merge
1263        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 100)]);
1264
1265        // Global max should be 7.0 (from segment 1)
1266        assert!(
1267            (merged.global_max_weight() - 7.0).abs() < 0.01,
1268            "Global max should be 7.0, got {}",
1269            merged.global_max_weight()
1270        );
1271
1272        // Roundtrip
1273        let mut bytes = Vec::new();
1274        merged.serialize(&mut bytes).unwrap();
1275        let loaded =
1276            BlockSparsePostingList::deserialize(&mut std::io::Cursor::new(&bytes)).unwrap();
1277
1278        assert!(
1279            (loaded.global_max_weight() - 7.0).abs() < 0.01,
1280            "After roundtrip, global max should still be 7.0, got {}",
1281            loaded.global_max_weight()
1282        );
1283    }
1284
1285    #[test]
1286    fn test_scoring_simulation_after_merge() {
1287        // Simulate what SparseTermScorer does - compute query_weight * stored_weight
1288        let postings1: Vec<(DocId, u16, f32)> = vec![
1289            (0, 0, 0.5), // doc 0, weight 0.5
1290            (5, 0, 0.8), // doc 5, weight 0.8
1291        ];
1292        let list1 =
1293            BlockSparsePostingList::from_postings(&postings1, WeightQuantization::Float32).unwrap();
1294
1295        let postings2: Vec<(DocId, u16, f32)> = vec![
1296            (0, 0, 0.6), // doc 100 after offset, weight 0.6
1297            (3, 0, 0.9), // doc 103 after offset, weight 0.9
1298        ];
1299        let list2 =
1300            BlockSparsePostingList::from_postings(&postings2, WeightQuantization::Float32).unwrap();
1301
1302        // Merge with offset 100
1303        let merged = BlockSparsePostingList::merge_with_offsets(&[(&list1, 0), (&list2, 100)]);
1304
1305        // Roundtrip
1306        let mut bytes = Vec::new();
1307        merged.serialize(&mut bytes).unwrap();
1308        let loaded =
1309            BlockSparsePostingList::deserialize(&mut std::io::Cursor::new(&bytes)).unwrap();
1310
1311        // Simulate scoring with query_weight = 2.0
1312        let query_weight = 2.0f32;
1313        let mut iter = loaded.iterator();
1314
1315        // Expected scores: query_weight * stored_weight
1316        // Doc 0: 2.0 * 0.5 = 1.0
1317        assert_eq!(iter.doc(), 0);
1318        let score = query_weight * iter.weight();
1319        assert!(
1320            (score - 1.0).abs() < 0.01,
1321            "Doc 0 score should be 1.0, got {}",
1322            score
1323        );
1324
1325        iter.advance();
1326        // Doc 5: 2.0 * 0.8 = 1.6
1327        assert_eq!(iter.doc(), 5);
1328        let score = query_weight * iter.weight();
1329        assert!(
1330            (score - 1.6).abs() < 0.01,
1331            "Doc 5 score should be 1.6, got {}",
1332            score
1333        );
1334
1335        iter.advance();
1336        // Doc 100: 2.0 * 0.6 = 1.2
1337        assert_eq!(iter.doc(), 100);
1338        let score = query_weight * iter.weight();
1339        assert!(
1340            (score - 1.2).abs() < 0.01,
1341            "Doc 100 score should be 1.2, got {}",
1342            score
1343        );
1344
1345        iter.advance();
1346        // Doc 103: 2.0 * 0.9 = 1.8
1347        assert_eq!(iter.doc(), 103);
1348        let score = query_weight * iter.weight();
1349        assert!(
1350            (score - 1.8).abs() < 0.01,
1351            "Doc 103 score should be 1.8, got {}",
1352            score
1353        );
1354    }
1355}