1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
//! Encoding and decoding of the (24, 12, 13) short, (24, 16, 9) medium, and (36, 20, 17)
//! long Reed-Solomon codes described by P25.
//!
//! These algorithms are sourced from *Coding Theory and Cryptography: The Essentials*,
//! Hankerson, Hoffman, et al, 2000.

use std;

use collect_slice::CollectSlice;

use bits::Hexbit;
use coding::bmcf;
use coding::galois::{P25Codeword, Polynomial, PolynomialCoefs};

/// Encoding and decoding of the (24, 12, 13) code.
pub mod short {
    use bits::Hexbit;

    /// Transpose of G_LC.
    const GEN: [[u8; 12]; 12] = [
        [0o62, 0o11, 0o03, 0o21, 0o30, 0o01, 0o61, 0o24, 0o72, 0o72, 0o73, 0o71],
        [0o44, 0o12, 0o01, 0o70, 0o22, 0o41, 0o76, 0o22, 0o42, 0o14, 0o65, 0o05],
        [0o03, 0o11, 0o05, 0o27, 0o03, 0o27, 0o21, 0o71, 0o05, 0o65, 0o36, 0o55],
        [0o25, 0o11, 0o75, 0o45, 0o75, 0o56, 0o55, 0o56, 0o20, 0o54, 0o61, 0o03],
        [0o14, 0o16, 0o14, 0o16, 0o15, 0o76, 0o76, 0o21, 0o43, 0o35, 0o42, 0o71],
        [0o16, 0o64, 0o06, 0o67, 0o15, 0o64, 0o01, 0o35, 0o47, 0o25, 0o22, 0o34],
        [0o27, 0o67, 0o20, 0o23, 0o33, 0o21, 0o63, 0o73, 0o33, 0o41, 0o17, 0o60],
        [0o03, 0o55, 0o44, 0o64, 0o15, 0o53, 0o35, 0o42, 0o56, 0o16, 0o04, 0o11],
        [0o53, 0o01, 0o66, 0o73, 0o51, 0o04, 0o30, 0o57, 0o01, 0o15, 0o44, 0o74],
        [0o04, 0o76, 0o06, 0o33, 0o03, 0o25, 0o13, 0o74, 0o16, 0o40, 0o20, 0o02],
        [0o36, 0o26, 0o70, 0o44, 0o53, 0o01, 0o64, 0o43, 0o13, 0o71, 0o25, 0o41],
        [0o47, 0o73, 0o66, 0o21, 0o50, 0o12, 0o70, 0o76, 0o76, 0o26, 0o05, 0o50],
    ];

    /// Calculate the 12 parity hexbits for the first 12 data hexbits in the given buffer,
    /// placing the parity hexbits at the end of the buffer.
    pub fn encode(buf: &mut [Hexbit; 24]) {
        let (data, parity) = buf.split_at_mut(12);
        super::encode(data, parity, GEN.iter().map(|r| &r[..]));
    }

    /// Try to decode the given 24-hexbit word to the nearest codeword, correcting up to 6
    /// hexbit errors (up to 36 bit errors.)
    ///
    /// If decoding was successful, return `Some((data, err))`, where `data` is the 12
    /// data hexbits and `err` is the number of corrected hexbits. Otherwise, return
    /// `None` to indicate an unrecoverable error.
    pub fn decode(buf: &mut [Hexbit; 24]) -> Option<(&[Hexbit], usize)> {
        super::decode::<super::ShortCoefs>(buf).map(move |(poly, err)| {
            (super::extract_data(poly, &mut buf[..12]), err)
        })
    }
}

/// Encoding and decoding of the (24, 16, 9) code.
pub mod medium {
    use bits::Hexbit;

    /// Transpose of G_ES.
    const GEN: [[u8; 16]; 8] = [
        [0o51, 0o57, 0o05, 0o73, 0o75, 0o20, 0o02, 0o24, 0o42, 0o32, 0o65, 0o64, 0o62, 0o55, 0o24, 0o67],
        [0o45, 0o25, 0o01, 0o07, 0o15, 0o32, 0o75, 0o74, 0o64, 0o32, 0o36, 0o06, 0o63, 0o43, 0o23, 0o75],
        [0o67, 0o63, 0o31, 0o47, 0o51, 0o14, 0o43, 0o15, 0o07, 0o55, 0o25, 0o54, 0o74, 0o34, 0o23, 0o45],
        [0o15, 0o73, 0o04, 0o14, 0o51, 0o42, 0o05, 0o72, 0o22, 0o41, 0o07, 0o32, 0o70, 0o71, 0o05, 0o60],
        [0o64, 0o71, 0o16, 0o41, 0o17, 0o75, 0o01, 0o24, 0o61, 0o57, 0o50, 0o76, 0o05, 0o57, 0o50, 0o57],
        [0o67, 0o22, 0o54, 0o77, 0o67, 0o42, 0o40, 0o26, 0o20, 0o66, 0o16, 0o46, 0o27, 0o76, 0o70, 0o24],
        [0o52, 0o40, 0o25, 0o47, 0o17, 0o70, 0o12, 0o74, 0o40, 0o21, 0o40, 0o14, 0o37, 0o50, 0o42, 0o06],
        [0o12, 0o15, 0o76, 0o11, 0o57, 0o54, 0o64, 0o61, 0o65, 0o77, 0o51, 0o36, 0o46, 0o64, 0o23, 0o26],
    ];

    /// Calculate the 8 parity hexbits for the first 16 data hexbits in the given buffer,
    /// placing the parity hexbits at the end of the buffer.
    pub fn encode(buf: &mut [Hexbit; 24]) {
        let (data, parity) = buf.split_at_mut(16);
        super::encode(data, parity, GEN.iter().map(|r| &r[..]));
    }

    /// Try to decode the given 24-hexbit word to the nearest codeword, correcting up to 4
    /// hexbit errors (up to 24 bit errors.)
    ///
    /// If decoding was successful, return `Some((data, err))`, where `data` is the 16
    /// data hexbits and `err` is the number of corrected hexbits. Otherwise, return
    /// `None` to indicate an unrecoverable error.
    pub fn decode(buf: &mut [Hexbit; 24]) -> Option<(&[Hexbit], usize)> {
        super::decode::<super::MedCoefs>(buf).map(move |(poly, err)| {
            (super::extract_data(poly, &mut buf[..16]), err)
        })
    }
}

/// Encoding and decoding of the (36, 20, 17) code.
pub mod long {
    use bits::Hexbit;

    /// Transpose of P_HDR.
    const GEN: [[u8; 20]; 16] = [
        [0o74, 0o04, 0o07, 0o26, 0o23, 0o24, 0o52, 0o55, 0o54, 0o74, 0o54, 0o51, 0o01, 0o11, 0o06, 0o34, 0o63, 0o71, 0o02, 0o34],
        [0o37, 0o17, 0o23, 0o05, 0o73, 0o51, 0o33, 0o62, 0o51, 0o41, 0o70, 0o07, 0o65, 0o70, 0o02, 0o31, 0o43, 0o21, 0o01, 0o35],
        [0o34, 0o50, 0o37, 0o07, 0o73, 0o25, 0o14, 0o56, 0o32, 0o30, 0o11, 0o72, 0o32, 0o05, 0o65, 0o01, 0o25, 0o70, 0o53, 0o02],
        [0o06, 0o24, 0o46, 0o63, 0o41, 0o23, 0o02, 0o25, 0o65, 0o41, 0o03, 0o30, 0o70, 0o10, 0o11, 0o15, 0o44, 0o44, 0o74, 0o23],
        [0o02, 0o11, 0o56, 0o63, 0o72, 0o22, 0o20, 0o73, 0o77, 0o43, 0o13, 0o65, 0o13, 0o65, 0o41, 0o44, 0o77, 0o56, 0o02, 0o21],
        [0o07, 0o05, 0o75, 0o27, 0o34, 0o41, 0o06, 0o60, 0o12, 0o22, 0o22, 0o54, 0o44, 0o24, 0o20, 0o64, 0o63, 0o04, 0o14, 0o27],
        [0o44, 0o30, 0o43, 0o63, 0o21, 0o74, 0o14, 0o15, 0o54, 0o51, 0o16, 0o06, 0o73, 0o15, 0o45, 0o16, 0o17, 0o30, 0o52, 0o22],
        [0o64, 0o57, 0o45, 0o40, 0o51, 0o66, 0o25, 0o30, 0o13, 0o06, 0o57, 0o21, 0o24, 0o77, 0o42, 0o24, 0o17, 0o74, 0o74, 0o33],
        [0o26, 0o33, 0o55, 0o06, 0o67, 0o74, 0o52, 0o13, 0o35, 0o64, 0o03, 0o36, 0o12, 0o22, 0o46, 0o52, 0o64, 0o04, 0o12, 0o64],
        [0o14, 0o03, 0o21, 0o04, 0o16, 0o65, 0o23, 0o17, 0o32, 0o33, 0o45, 0o63, 0o52, 0o24, 0o54, 0o16, 0o14, 0o23, 0o57, 0o42],
        [0o26, 0o02, 0o50, 0o40, 0o31, 0o70, 0o35, 0o20, 0o56, 0o03, 0o72, 0o50, 0o21, 0o24, 0o35, 0o06, 0o40, 0o71, 0o24, 0o05],
        [0o44, 0o02, 0o31, 0o45, 0o74, 0o36, 0o74, 0o02, 0o12, 0o47, 0o31, 0o61, 0o55, 0o74, 0o12, 0o62, 0o74, 0o70, 0o63, 0o73],
        [0o54, 0o15, 0o45, 0o47, 0o11, 0o67, 0o75, 0o70, 0o75, 0o27, 0o30, 0o64, 0o12, 0o07, 0o40, 0o20, 0o31, 0o63, 0o15, 0o51],
        [0o13, 0o16, 0o27, 0o30, 0o21, 0o45, 0o75, 0o55, 0o01, 0o12, 0o56, 0o52, 0o35, 0o44, 0o64, 0o13, 0o72, 0o45, 0o42, 0o46],
        [0o77, 0o25, 0o71, 0o75, 0o12, 0o64, 0o43, 0o14, 0o72, 0o55, 0o35, 0o01, 0o14, 0o07, 0o65, 0o55, 0o54, 0o56, 0o52, 0o73],
        [0o05, 0o26, 0o62, 0o07, 0o21, 0o01, 0o27, 0o47, 0o63, 0o47, 0o22, 0o60, 0o72, 0o46, 0o33, 0o57, 0o06, 0o43, 0o33, 0o60],
    ];

    /// Calculate the 16 parity hexbits for the first 20 data hexbits in the given buffer,
    /// placing the parity hexbits at the end of the buffer.
    pub fn encode(buf: &mut [Hexbit; 36]) {
        let (data, parity) = buf.split_at_mut(20);
        super::encode(data, parity, GEN.iter().map(|r| &r[..]))
    }

    /// Try to decode the given 36-hexbit word to the nearest codeword, correcting up to 8
    /// hexbit errors (up to 48 bit errors.)
    ///
    /// If decoding was successful, return `Some((data, err))`, where `data` is the 20
    /// data hexbits and `err` is the number of corrected hexbits. Otherwise, return
    /// `None` to indicate an unrecoverable error.
    pub fn decode(buf: &mut [Hexbit; 36]) -> Option<(&[Hexbit], usize)> {
        super::decode::<super::LongCoefs>(buf).map(move |(poly, err)| {
            (super::extract_data(poly, &mut buf[..20]), err)
        })
    }
}

/// Encode the given data with the given generator matrix and place the resulting parity
/// symbols in the given destination.
fn encode<'g, G>(data: &[Hexbit], parity: &mut [Hexbit], gen: G)
    where G: Iterator<Item = &'g [u8]>
{
    gen.map(|row| {
        row.iter()
           .zip(data.iter())
           .fold(P25Codeword::default(), |s, (&col, &d)| {
               s + P25Codeword::new(d.bits()) * P25Codeword::new(col)
           }).bits()
    }).map(Hexbit::new).collect_slice_checked(parity);
}

/// Try to fix any errors in the given word.
///
/// On success, return `Some((poly, err))`, where `poly` is the polynomial representation
/// of the corrected word (with the last data symbol as the degree-0 coefficient) and
/// `err` is the number of corrected hexbit symbols. Otherwise, return `None` to indicate
/// an unrecoverable error.
fn decode<P: PolynomialCoefs>(word: &[Hexbit]) -> Option<(Polynomial<P>, usize)> {
    // In the polynomial representation, the first received symbol corresponds to the
    // coefficient of the highest-degree term.
    let mut poly = Polynomial::new(word.iter().rev().map(|&b|
        P25Codeword::new(b.bits())
    ));

    bmcf::Errors::new(syndromes(&poly)).and_then(|(nerr, errs)| {
        for (loc, pat) in errs {
            match poly.get_mut(loc) {
                Some(coef) => *coef = *coef + pat,
                None => return None,
            }
        }

        Some((poly, nerr))
    })
}

/// Generate the syndrome polynomial s(x) from the given received word r(x).
///
/// The resulting polynomial has the form s(x) = s<sub>1</sub> + s<sub>2</sub>x + ··· +
/// s<sub>2t</sub>x<sup>2t</sup>, where s<sub>i</sub> = r(α<sup>i</sup>).
fn syndromes<P: PolynomialCoefs>(word: &Polynomial<P>) -> Polynomial<P> {
    Polynomial::new((1..=P::syndromes()).map(|p| {
        // Compute r(α^p).
        word.eval(P25Codeword::for_power(p))
    }))
}

/// Extract the data symbols from the given polynomial-form word and write them to the
/// given slice.
fn extract_data<P>(poly: Polynomial<P>, data: &mut [Hexbit]) -> &[Hexbit]
    where P: PolynomialCoefs
{
    poly.iter().rev().map(|coef| Hexbit::new(coef.bits())).collect_slice_fill(data);
    data
}

/// Polynomial coefficients for the short code.
impl_polynomial_coefs!(ShortCoefs, 13, 24);

/// Polynomial coefficients for the medium code.
impl_polynomial_coefs!(MedCoefs, 9, 24);

/// Polynomial coefficients for the long code.
impl_polynomial_coefs!(LongCoefs, 17, 36);

#[cfg(test)]
mod test {
    use super::*;
    use super::{MedCoefs, ShortCoefs, LongCoefs};
    use coding::galois::{PolynomialCoefs, P25Codeword, Polynomial};
    use bits::Hexbit;
    use collect_slice::CollectSlice;

    #[test]
    fn validate_coefs() {
        ShortCoefs::default().validate();
        MedCoefs::default().validate();
        LongCoefs::default().validate();
    }

    #[test]
    fn verify_short_gen() {
        let p = Polynomial::<ShortCoefs>::new([
            P25Codeword::for_power(1),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(2),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(3),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(4),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(5),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(6),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(7),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(8),
            P25Codeword::for_power(0),
        ].iter().cloned());

        assert_eq!(p.degree().unwrap(), 8);
        assert_eq!(p.coef(0).bits(), 0o26);
        assert_eq!(p.coef(1).bits(), 0o06);
        assert_eq!(p.coef(2).bits(), 0o24);
        assert_eq!(p.coef(3).bits(), 0o57);
        assert_eq!(p.coef(4).bits(), 0o60);
        assert_eq!(p.coef(5).bits(), 0o45);
        assert_eq!(p.coef(6).bits(), 0o75);
        assert_eq!(p.coef(7).bits(), 0o67);
        assert_eq!(p.coef(8).bits(), 0o01);
    }

    #[test]
    fn verify_med_gen() {
        let p = Polynomial::<MedCoefs>::new([
            P25Codeword::for_power(1),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(2),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(3),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(4),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(5),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(6),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(7),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(8),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(9),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(10),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(11),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(12),
            P25Codeword::for_power(0),
        ].iter().cloned());

        assert_eq!(p.degree().unwrap(), 12);
        assert_eq!(p.coef(0).bits(), 0o50);
        assert_eq!(p.coef(1).bits(), 0o41);
        assert_eq!(p.coef(2).bits(), 0o02);
        assert_eq!(p.coef(3).bits(), 0o74);
        assert_eq!(p.coef(4).bits(), 0o11);
        assert_eq!(p.coef(5).bits(), 0o60);
        assert_eq!(p.coef(6).bits(), 0o34);
        assert_eq!(p.coef(7).bits(), 0o71);
        assert_eq!(p.coef(8).bits(), 0o03);
        assert_eq!(p.coef(9).bits(), 0o55);
        assert_eq!(p.coef(10).bits(), 0o05);
        assert_eq!(p.coef(11).bits(), 0o71);
        assert_eq!(p.coef(12).bits(), 0o01);
    }

    #[test]
    fn verify_long_gen() {
        let p = Polynomial::<LongCoefs>::new([
            P25Codeword::for_power(1),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(2),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(3),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(4),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(5),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(6),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(7),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(8),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(9),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(10),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(11),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(12),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(13),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(14),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(15),
            P25Codeword::for_power(0),
        ].iter().cloned()) * Polynomial::new([
            P25Codeword::for_power(16),
            P25Codeword::for_power(0),
        ].iter().cloned());

        assert_eq!(p.degree().unwrap(), 16);
        assert_eq!(p.coef(0).bits(), 0o60);
        assert_eq!(p.coef(1).bits(), 0o73);
        assert_eq!(p.coef(2).bits(), 0o46);
        assert_eq!(p.coef(3).bits(), 0o51);
        assert_eq!(p.coef(4).bits(), 0o73);
        assert_eq!(p.coef(5).bits(), 0o05);
        assert_eq!(p.coef(6).bits(), 0o42);
        assert_eq!(p.coef(7).bits(), 0o64);
        assert_eq!(p.coef(8).bits(), 0o33);
        assert_eq!(p.coef(9).bits(), 0o22);
        assert_eq!(p.coef(10).bits(), 0o27);
        assert_eq!(p.coef(11).bits(), 0o21);
        assert_eq!(p.coef(12).bits(), 0o23);
        assert_eq!(p.coef(13).bits(), 0o02);
        assert_eq!(p.coef(14).bits(), 0o35);
        assert_eq!(p.coef(15).bits(), 0o34);
        assert_eq!(p.coef(16).bits(), 0o01);
    }

    #[test]
    fn test_decode_short() {
        let mut buf = [Hexbit::default(); 24];
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0].iter()
             .map(|&b| Hexbit::new(b)).collect_slice(&mut buf[..]);

        short::encode(&mut buf);

        buf[0] = Hexbit::new(0o00);
        buf[2] = Hexbit::new(0o60);
        buf[7] = Hexbit::new(0o42);
        buf[13] = Hexbit::new(0o14);
        buf[18] = Hexbit::new(0o56);
        buf[23] = Hexbit::new(0o72);

        let dec = short::decode(&mut buf);
        let exp = [
           Hexbit::new(1), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0),
        ];

        assert_eq!(dec, Some((&exp[..], 6)));
    }

    #[test]
    fn test_decode_med() {
        let mut buf = [Hexbit::default(); 24];
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0].iter()
             .map(|&b| Hexbit::new(b)).collect_slice(&mut buf[..]);

        medium::encode(&mut buf);

        buf[0] = Hexbit::new(0o00);
        buf[10] = Hexbit::new(0o60);
        buf[16] = Hexbit::new(0o42);
        buf[23] = Hexbit::new(0o14);

        let dec = medium::decode(&mut buf);
        let exp = [
           Hexbit::new(1), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0),
        ];

        assert_eq!(dec, Some((&exp[..], 4)));
    }

    #[test]
    fn test_decode_long() {
        // Test random error locations.
        let mut buf = [Hexbit::default(); 36];
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0].iter()
            .map(|&b| Hexbit::new(b)).collect_slice(&mut buf[..]);

        long::encode(&mut buf);

        buf[0] = Hexbit::new(0o00);
        buf[2] = Hexbit::new(0o43);
        buf[5] = Hexbit::new(0o21);
        buf[10] = Hexbit::new(0o11);
        buf[18] = Hexbit::new(0o67);
        buf[22] = Hexbit::new(0o04);
        buf[27] = Hexbit::new(0o12);
        buf[30] = Hexbit::new(0o32);

        let dec = long::decode(&mut buf);
        let exp = [
           Hexbit::new(1), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
           Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
        ];

        assert_eq!(dec, Some((&exp[..], 8)));

        let exp = [
           Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77),
           Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77),
           Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77),
           Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77), Hexbit::new(0o77),
        ];

        // Test 6-bit error in each location.
        for i in 0..36 {
            let mut buf = [Hexbit::default(); 36];
            [0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77,
             0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77].iter().cloned()
                .map(Hexbit::new).collect_slice(&mut buf[..]);
            long::encode(&mut buf);

            buf[i] = Hexbit::new(0);
            let dec = long::decode(&mut buf);

            assert_eq!(dec, Some((&exp[..], 1)));
        }

        // Test contiguous 48-bit error.
        for i in 0..29 {
            let mut buf = [Hexbit::default(); 36];
            [0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77,
             0o77, 0o77, 0o77, 0o77, 0o77, 0o77, 0o77].iter().cloned()
                .map(Hexbit::new).collect_slice(&mut buf[..]);
            long::encode(&mut buf);

            buf[i] = Hexbit::new(0);
            buf[i+1] = Hexbit::new(0);
            buf[i+2] = Hexbit::new(0);
            buf[i+3] = Hexbit::new(0);
            buf[i+4] = Hexbit::new(0);
            buf[i+5] = Hexbit::new(0);
            buf[i+6] = Hexbit::new(0);
            buf[i+7] = Hexbit::new(0);
            let dec = long::decode(&mut buf);

            assert_eq!(dec, Some((&exp[..], 8)));
        }
    }

    #[test]
    fn test_unrecoverable() {
        // These unrecoverable received words caused divide-by-zero errors due to
        // detectable discrepancy between the degree of the error locator polynomial and
        // the number of roots found.

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(6), Hexbit::new(46), Hexbit::new(28), Hexbit::new(27), Hexbit::new(63), Hexbit::new(38),
            Hexbit::new(0), Hexbit::new(36), Hexbit::new(4), Hexbit::new(0), Hexbit::new(0), Hexbit::new(24),
            Hexbit::new(0), Hexbit::new(27), Hexbit::new(47), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0)
        ];
        assert_eq!(long::decode(&mut w), None);

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(3), Hexbit::new(28), Hexbit::new(0), Hexbit::new(0), Hexbit::new(29), Hexbit::new(4),
            Hexbit::new(8), Hexbit::new(46), Hexbit::new(0), Hexbit::new(19), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(11), Hexbit::new(0), Hexbit::new(52), Hexbit::new(0), Hexbit::new(53), Hexbit::new(35), Hexbit::new(3)
        ];
        assert_eq!(long::decode(&mut w), None);

        // More general unrecoverable words.

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0),
            Hexbit::new(4), Hexbit::new(51), Hexbit::new(0), Hexbit::new(33), Hexbit::new(39), Hexbit::new(34),
            Hexbit::new(0), Hexbit::new(20), Hexbit::new(48), Hexbit::new(44), Hexbit::new(0), Hexbit::new(25), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(16), Hexbit::new(40), Hexbit::new(0), Hexbit::new(0), Hexbit::new(60),
            Hexbit::new(51), Hexbit::new(38)
        ];
        assert_eq!(long::decode(&mut w), None);

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(8),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(19),
            Hexbit::new(39), Hexbit::new(0), Hexbit::new(11), Hexbit::new(12), Hexbit::new(0), Hexbit::new(0), Hexbit::new(33),
            Hexbit::new(35), Hexbit::new(3), Hexbit::new(36), Hexbit::new(0), Hexbit::new(0), Hexbit::new(37), Hexbit::new(46),
            Hexbit::new(0), Hexbit::new(20)
        ];
        assert_eq!(long::decode(&mut w), None);
    }

    #[test]
    fn test_received_decode() {
        // Just a few examples of received words that should be recoverable.

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(13), Hexbit::new(21), Hexbit::new(46), Hexbit::new(4), Hexbit::new(22), Hexbit::new(12), Hexbit::new(9),
            Hexbit::new(52), Hexbit::new(25), Hexbit::new(13), Hexbit::new(58), Hexbit::new(28), Hexbit::new(58), Hexbit::new(0),
            Hexbit::new(51), Hexbit::new(62), Hexbit::new(41), Hexbit::new(34), Hexbit::new(22)
        ];
        let exp = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(8),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(13), Hexbit::new(21), Hexbit::new(46)
        ];
        assert_eq!(long::decode(&mut w), Some((&exp[..], 6)));

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(3), Hexbit::new(18), Hexbit::new(63), Hexbit::new(14), Hexbit::new(62), Hexbit::new(37), Hexbit::new(37),
            Hexbit::new(41), Hexbit::new(45), Hexbit::new(54), Hexbit::new(14), Hexbit::new(49), Hexbit::new(31), Hexbit::new(15),
            Hexbit::new(48), Hexbit::new(46), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0)
        ];
        let exp = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(8),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(3), Hexbit::new(18), Hexbit::new(63)
        ];
        assert_eq!(long::decode(&mut w), Some((&exp[..], 3)));

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(3), Hexbit::new(18), Hexbit::new(63), Hexbit::new(14), Hexbit::new(62), Hexbit::new(37), Hexbit::new(37),
            Hexbit::new(41), Hexbit::new(45), Hexbit::new(54), Hexbit::new(14), Hexbit::new(49), Hexbit::new(31), Hexbit::new(15),
            Hexbit::new(48), Hexbit::new(46), Hexbit::new(58), Hexbit::new(51), Hexbit::new(54)
        ];
        let exp = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(3), Hexbit::new(18), Hexbit::new(63)
        ];
        assert_eq!(long::decode(&mut w), Some((&exp[..], 0)));

        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),

            Hexbit::new(3), Hexbit::new(18), Hexbit::new(63), Hexbit::new(14), Hexbit::new(62), Hexbit::new(37), Hexbit::new(37),
            Hexbit::new(41), Hexbit::new(45), Hexbit::new(54), Hexbit::new(14), Hexbit::new(49), Hexbit::new(31), Hexbit::new(15),
            Hexbit::new(48), Hexbit::new(47), Hexbit::new(40), Hexbit::new(0), Hexbit::new(12)
        ];
        let exp = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(8), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(3), Hexbit::new(18), Hexbit::new(63)
        ];
        assert_eq!(long::decode(&mut w), Some((&exp[..], 4)));
    }

    #[test]
    fn test_out_of_bounds() {
        // Tests received words that cause attempted out-of-bounds corrections

        // 4 errors, attempted access at location 34.
        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(51), Hexbit::new(19), Hexbit::new(8),
            Hexbit::new(35), Hexbit::new(48), Hexbit::new(61), Hexbit::new(0), Hexbit::new(1), Hexbit::new(11),
            Hexbit::new(44), Hexbit::new(10), Hexbit::new(0), Hexbit::new(11), Hexbit::new(0), Hexbit::new(15),
            Hexbit::new(56), Hexbit::new(50), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0)
        ];

        assert_eq!(medium::decode(&mut w), None);

        // 6 errors, attempted access at location 61.
        let mut w = [
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(4), Hexbit::new(0), Hexbit::new(3), Hexbit::new(34),
            Hexbit::new(28), Hexbit::new(7), Hexbit::new(13), Hexbit::new(61), Hexbit::new(32), Hexbit::new(27),
            Hexbit::new(55), Hexbit::new(49), Hexbit::new(7), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0),
            Hexbit::new(0), Hexbit::new(0), Hexbit::new(0), Hexbit::new(0)
        ];

        assert_eq!(short::decode(&mut w), None);
    }
}