oat_rust 0.2.0

User-friendly tools for applied topology
Documentation
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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
//! Matrix-matrix and matrix-vector multiplication.
//! 
//! 
//! To multiply a matrix with a matrix, use one of the following
//! - [MatrixOracleOperations](crate::algebra::matrices::operations::MatrixOracleOperations), or
//! - [ProductMatrix::new]
//! 
//! To multiply a matrix with a vector, use one of the following
//! - [MatrixOracleOperations](crate::algebra::matrices::operations::MatrixOracleOperations)
//! - [VectorOperations](crate::algebra::vectors::operations::VectorOperations)
//! - the functions listed at the bottom of this page
//! 
//! **[MatrixOracleOperations](crate::algebra::matrices::operations::MatrixOracleOperations) and [VectorOperations] are only available
//! for matrix structs that implement `Sized`. 
//! If your matrices do not implement `Sized`, then you can use the functions listed at the bottom of this page
//! (for matrix-vector multiplication) or [ProductMatrix::new] (for matrix-matrix multiplication).
//! **
//! 
//! # See also
//! 
//! The [product matrix module](crate::algebra::matrices::types::Product), which defines the [ProductMatrix] type.


use crate::algebra::matrices::query::{ MatrixAlgebra, MatrixOracle };
use crate::algebra::matrices::operations::MatrixOracleOperations;
use crate::algebra::matrices::types::product::ProductMatrix;

use crate::algebra::rings::traits::SemiringOperations;

use crate::algebra::vectors::operations::{LinearCombinationSimplified, LinearCombinationUnsimplified, VectorOperations};
use crate::algebra::vectors::entries::{KeyValGet, KeyValSet};

use crate::utilities::iterators::merge::hit::hit_merge_by_predicate;
use crate::utilities::order::{JudgePartialOrder, ReverseOrder};



//  MATRIX - VECTOR MULTIPLICATION
//  ===========================================================================




//  ROW
//  ---------------------------------------------------------------------------

/// Calculates `v * M` (unsimplified)
/// 
/// Calculates `v * M`, where `v` is a sparse vector and `M` is a matrix.
/// 
/// The result is an iterator that runs over nonzero entries in ascending order of index.
/// 
/// **Note** the resulting iterator is not simplified -- it may return several entries with the *same index.*
/// 
/// # Examples
/// 
/// If `A` is a **row**-major representation of a matrix, and `v` is a sparse vector, then this function returns `vA`, a linear combination of **rows** of `A`.
/// If instead the representation is column-major, then this function returns `Av`.
/// 
/// ```
/// use oat_rust::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
/// use oat_rust::algebra::rings::types::field_prime_order::PrimeOrderField;
/// use oat_rust::utilities::order::OrderOperatorByKey;
/// use oat_rust::algebra::matrices::operations::multiply::multiply_row_vector_with_matrix_unsimplified;
/// 
/// // a row-major matrix representation with usize row indices and isize column indices
/// let matrix      =   VecOfVec::new(   
///                         vec![   vec![ (0isize, 1), (1isize, 6) ], 
///                                 vec![ (0isize, 1), (1isize, 1) ],     ]     
///                     ).ok().unwrap();
/// // the vector [1, 1]
/// let vector      =   vec![ (0usize, 1), (1usize, 1) ];
/// 
/// // the product
/// let product     =   multiply_row_vector_with_matrix_unsimplified(
///                         vector,
///                         & matrix,
///                         PrimeOrderField::new(7), // the finite field of order 7
///                         OrderOperatorByKey::new(), // this compares tuples according to their lexicographic order
///                     );
/// // the product should return the following sequence of entries: (0,1), (0,1), (1,1), (1,6)   
/// itertools::assert_equal( product, vec![(0isize,1usize), (0,1), (1,1), (1,6)] )
/// ```
pub fn multiply_row_vector_with_matrix_unsimplified 
            < Matrix, RingOperator, SparseVecIter, OrderOperator> 
            ( 
                sparse_vec:         SparseVecIter,
                matrix:             Matrix, 
                ring_operator:      RingOperator,
                order_operator:     OrderOperator,
            ) 
            ->
            LinearCombinationUnsimplified
                < Matrix::Row, RingOperator, OrderOperator >            
    where 
        Matrix:                         MatrixOracle,
        Matrix::RowEntry:               KeyValSet,
        RingOperator:                   Clone + SemiringOperations< Element = Matrix::Coefficient >, // ring operators must typically implement Clone for operations such as simplification and dropping zeros
        OrderOperator:                  Clone + JudgePartialOrder<  Matrix::RowEntry >, // order comparators must often implement Clone when one wishes to construct new, ordered objects
        SparseVecIter:                  IntoIterator,
        SparseVecIter::Item:            KeyValGet < Key=Matrix::RowIndex, Val=Matrix::Coefficient >,
{
    // LinearCombinationUnsimplified{
    //     linear_combination_unsimplified:
            hit_merge_by_predicate(
                sparse_vec
                        .into_iter()
                        .map(   |x| 
                                matrix
                                    .row( & x.key() )
                                    .scale_by( x.val(), ring_operator.clone() )
                        ),
                    order_operator
            )        
    // }
}


/// Calculates `v * M` (unsimplified)
/// 
/// Calculates `v * M`, where `v` is a sparse vector and `M` is a matrix.
/// 
/// The result is an iterator of type [LinearCombinationSimplified], which represents a linear combination of the rows of `M`
/// - only entries with nonzero coefficients are returned
/// - entries are sorted in ascending order, according to index
/// - every entry has a distinct index (no repeat indices)
/// 
/// 
/// # Examples
/// 
/// 
/// ```
/// use oat_rust::algebra::matrices::operations::multiply::multiply_row_vector_with_matrix;
/// use oat_rust::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
/// use oat_rust::algebra::rings::types::field_prime_order::PrimeOrderField;
/// use oat_rust::utilities::order::OrderOperatorByKey;
/// 
/// // a row-major matrix representation with usize row indices and isize column indices
/// let matrix      =   VecOfVec::new(   
///                         vec![   vec![ (0isize, 1), (1isize, 6) ], 
///                                 vec![ (0isize, 1), (1isize, 1) ],     ]     
///                     ).ok().unwrap();
/// // the vector [1, 1]
/// let vector      =   vec![ (0usize, 1), (1usize, 1) ];
/// 
/// // the product
/// let product     =   multiply_row_vector_with_matrix(
///                         vector,
///                         & matrix,
///                         PrimeOrderField::new(7), // the finite field of order 7
///                         OrderOperatorByKey::new(), // this compares tuples according to their lexicographic order
///                     );
/// // the product should equal vector [2 0]        
/// itertools::assert_equal( product, vec![(0isize, 2)] )
/// ```
pub fn multiply_row_vector_with_matrix 
            < Matrix, RingOperator, SparseVecIter, OrderOperator> 
            ( 
                sparse_vec:         SparseVecIter,
                matrix:             Matrix, 
                ring_operator:      RingOperator,
                order_operator:     OrderOperator,
            ) 
            ->
            LinearCombinationSimplified
                < Matrix::Row, RingOperator, OrderOperator >            
    where 
        Matrix:                         MatrixOracle,    
        Matrix::RowEntry:               KeyValSet,
        RingOperator:                   Clone + SemiringOperations< Element = Matrix::Coefficient >, // ring operators must typically implement Clone for operations such as simplification and dropping zeros        
        OrderOperator:                  Clone + JudgePartialOrder<  Matrix::RowEntry >, // order comparators must often implement Clone when one wishes to construct new, ordered objects
        SparseVecIter:                  IntoIterator,
        SparseVecIter::Item:            KeyValGet < Key=Matrix::RowIndex, Val=Matrix::Coefficient >,
{
    multiply_row_vector_with_matrix_unsimplified( 
            sparse_vec,
            matrix,
            ring_operator.clone(),
            order_operator,
        )
        // .linear_combination_unsimplified
        .simplify(ring_operator)
}        



//  COLUMN
//  ---------------------------------------------------------------------------


/// Returns the product of a matrix with a vector; the resulting iterator is an unsimplified linear combination of the matrix's columns.
/// 
/// The resulting iterator returns entries in descending (but **non-strictly** descending) order of index, provided that
/// [matrix.column_reverse(&column_index)](crate::algebra::matrices::query::MatrixOracle) returns entries in 
/// descending order according to index, consistent with the user-provided [order operator](crate::utilities::order).
/// 
/// **Note** the resulting iterator is not simplified -- it may return multiple entries with the same index.
/// 
/// ```
/// use oat_rust::algebra::matrices::operations::multiply::multiply_column_vector_with_matrix_and_return_unsimplified_and_reversed;
/// use oat_rust::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
/// use oat_rust::algebra::rings::types::field_prime_order::PrimeOrderField;
/// use oat_rust::utilities::order::OrderOperatorAuto;
/// 
/// // a row-major matrix representation with usize row indices and isize column indices
/// let matrix      =   VecOfVec::new(   
///                         vec![   vec![ (0isize, 1), (1isize, 6) ], 
///                                 vec![ (0isize, 1), (1isize, 1) ],     ]     
///                     ).ok().unwrap();   
/// // the vector [1, 1]
/// let vector      =   vec![ (0isize, 1), (1isize, 1) ];
/// 
/// // the product
/// let mut product     =   multiply_column_vector_with_matrix_and_return_unsimplified_and_reversed(
///                         vector,
///                         & matrix,
///                         PrimeOrderField::new(7), // the finite field of order 7
///                         OrderOperatorAuto, // this compares tuples according to their lexicographic order
///                     );
/// // the product should return the following entries in sequence: (1,1), (1,1), (0,1), (0,6)       
/// itertools::assert_equal( product, vec![(1,1), (1,1), (0,6), (0,1)] )
/// ```
pub fn multiply_column_vector_with_matrix_and_return_unsimplified_and_reversed 
            < Matrix, RingOperator, SparseVecIter, OrderOperatorForRowIndices> 
            ( 
                sparse_vec:                         SparseVecIter,
                matrix:                             Matrix, 
                ring_operator:                      RingOperator,
                order_operator_for_row_indices:     OrderOperatorForRowIndices,
            ) 
            ->
            LinearCombinationUnsimplified
                < Matrix::ColumnReverse, RingOperator, ReverseOrder< OrderOperatorForRowIndices > >            
    where 
        Matrix:                             MatrixOracle,
        Matrix::ColumnEntry:                KeyValSet,
        RingOperator:                       Clone + SemiringOperations< Element = Matrix::Coefficient >, // ring operators must typically implement Clone for operations such as simplification and dropping zeros
        OrderOperatorForRowIndices:                      Clone + JudgePartialOrder<  Matrix::ColumnEntry >, // order comparators must often implement Clone when one wishes to construct new, ordered objects
        SparseVecIter:                      IntoIterator,
        SparseVecIter::Item:                KeyValGet < Key = Matrix::ColumnIndex, Val = Matrix::Coefficient >,
{
    // LinearCombinationUnsimplified{
    //     linear_combination_unsimplified:
            hit_merge_by_predicate(
                sparse_vec
                        .into_iter()
                        .map(   |x| 
                                matrix
                                    .column_reverse(& x.key() )
                                    .scale_by( x.val(), ring_operator.clone() )
                        ),
                    ReverseOrder::new( order_operator_for_row_indices )
            )        
    // }
}


/// Returns the product of a matrix with a vector; the result is a linear combination of the matrix's columns.
/// 
/// The resulting iterator is a simplified linear combination of columns.  It returns entries in **strictly** descending order of index, provided that
/// [matrix.column_reverse(&column_index)](crate::algebra::matrices::query::MatrixOracle) returns entries in 
/// ascending order according to index, consistent with the user-provided [order operator](crate::utilities::order).
/// 
/// In particular, no two consequtive indices have the same
/// index.
/// 
/// # Examples
/// 
/// If `A` is a **row**-major representation of a matrix, and `v` is a sparse vector, then this function returns `A v`, a linear combination of **columns** of `A`.
/// If instead the representation is column-major, then this function returns `vA`.
/// 
/// ```
/// use oat_rust::algebra::matrices::operations::multiply::multiply_column_vector_with_matrix_and_return_reversed;
/// use oat_rust::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
/// use oat_rust::algebra::rings::types::field_prime_order::PrimeOrderField;
/// use oat_rust::utilities::order::OrderOperatorByKey;
/// 
/// // a row-major matrix representation with usize row indices and isize column indices
/// let matrix      =   VecOfVec::new(   
///                         vec![   vec![ (0isize, 1), (1isize, 6) ], 
///                                 vec![ (0isize, 1), (1isize, 1) ],     ]     
///                     ).ok().unwrap();
/// // the vector [1, 1]
/// let vector      =   vec![ (0isize, 1), (1isize, 1) ];
/// 
/// // the product
/// let product     =   multiply_column_vector_with_matrix_and_return_reversed(
///                         vector,
///                         & matrix,
///                         PrimeOrderField::new(7), // the finite field of order 7
///                         OrderOperatorByKey::new(), // this compares order of entries according to their indices
///                     );
/// // the product should equal vector [0 1]        
/// itertools::assert_equal( product, vec![(1usize, 2)] )
/// ```
pub fn multiply_column_vector_with_matrix_and_return_reversed 
            < Matrix, RingOperator, SparseVecIter, OrderOperatorForRowIndices> 
            ( 
                sparse_vec:                         SparseVecIter,
                matrix:                             Matrix, 
                ring_operator:                      RingOperator,
                order_operator_row_row_indices:     OrderOperatorForRowIndices,
            ) 
            ->
            LinearCombinationSimplified
                < Matrix::ColumnReverse, RingOperator, ReverseOrder< OrderOperatorForRowIndices > >

    where 
        Matrix:                             MatrixOracle<
                                                ColumnEntry:                KeyValSet,
                                                // ColumnReverse:              PeekUnqualified,
                                            >,
        RingOperator:                       Clone + SemiringOperations< Element = Matrix::Coefficient >, // ring operators must typically implement Clone for operations such as simplification and dropping zeros
        OrderOperatorForRowIndices:                      Clone + JudgePartialOrder<  Matrix::ColumnEntry >, // order comparators must often implement Clone when one wishes to construct new, ordered objects
        SparseVecIter:                      IntoIterator,
        SparseVecIter::Item:                KeyValGet < Key = Matrix::ColumnIndex, Val = Matrix::Coefficient >,
{

    multiply_column_vector_with_matrix_and_return_unsimplified_and_reversed( 
            sparse_vec,
            matrix,
            ring_operator.clone(),
            order_operator_row_row_indices,
        )
        // .linear_combination_unsimplified
        .simplify(ring_operator)
}    







































//  =========================================================================================================
//  TESTS
//  =========================================================================================================

//  ---------------------------------------------------------------------------
//  DOC-TEST DRAFTS
//  ---------------------------------------------------------------------------

//  We use the following module to draft doc tests, which are easier to debug here than in doc strings.

#[cfg(test)]
mod doc_tests {
    

    use crate::algebra::matrices::operations::MatrixOracleOperations;


    #[test]
    fn doc_test_vector_matrix_product_major_ascend_unsimplified() {
        use crate::algebra::matrices::operations::multiply::multiply_row_vector_with_matrix_unsimplified;
        use crate::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
        use crate::algebra::rings::types::field_prime_order::PrimeOrderField;
        use crate::utilities::order::OrderOperatorByKey;

        // a row-major matrix representation with usize row indices and isize column indices
        let matrix      =   VecOfVec::new(   vec![   vec![ (0isize, 1), (1isize, 6) ], 
                                                           vec![ (0isize, 1), (1isize, 1) ],     ]     ).unwrap();
        // the vector [1, 1]
        let vector      =   vec![ (0usize, 1), (1usize, 1) ];
        
        // the product
        let product     =   multiply_row_vector_with_matrix_unsimplified(
                                vector,
                                (& matrix).into_peekable_matrix(),
                                PrimeOrderField::new(7), // the finite field of order 7
                                OrderOperatorByKey::new(), // this compares tuples according to their lexicographic order
                            );
        // the product should return the following sequence of entries: (0,1), (0,1), (1,1), (1,6)   
        itertools::assert_equal( product, vec![(0isize,1usize), (0,1), (1,1), (1,6)] )
    }     

    #[test]
    fn doc_test_vector_matrix_product_major_ascend_simplified() {
        use crate::algebra::matrices::operations::multiply::multiply_row_vector_with_matrix;
        use crate::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
        use crate::algebra::rings::types::field_prime_order::PrimeOrderField;
        use crate::utilities::order::OrderOperatorByKey;

        // a row-major matrix representation with usize row indices and isize column indices
        let matrix      =   VecOfVec::new(   vec![   vec![ (0isize, 1), (1isize, 6) ], 
                                                           vec![ (0isize, 1), (1isize, 1) ],     ]     ).unwrap();
        // the vector [1, 1]
        let vector      =   vec![ (0usize, 1), (1usize, 1) ];
        
        // the product
        let product     =   multiply_row_vector_with_matrix(
                                vector,
                                ( & matrix ).into_peekable_matrix(),
                                PrimeOrderField::new(7), // the finite field of order 7
                                OrderOperatorByKey::new(), // this compares tuples according to their lexicographic order
                            );
        // the product should equal vector [2 0]        
        itertools::assert_equal( product, vec![(0isize, 2)] )
    }    

    #[test]
    fn doc_test_vector_matrix_product_minor_descend_unsimplified() {
        use crate::algebra::matrices::operations::multiply::multiply_column_vector_with_matrix_and_return_unsimplified_and_reversed;
        use crate::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
        use crate::algebra::rings::types::field_prime_order::PrimeOrderField;
        use crate::utilities::order::OrderOperatorAuto;

        // a row-major matrix representation with usize row indices and isize column indices
        let matrix      =   VecOfVec::new(   vec![   vec![ (0isize, 1), (1isize, 6) ], 
                                                           vec![ (0isize, 1), (1isize, 1) ],     ]     ).unwrap();;
        // the vector [1, 1]
        let vector      =   vec![ (0isize, 1), (1isize, 1) ];
        
        // the product
        let product     =   multiply_column_vector_with_matrix_and_return_unsimplified_and_reversed(
                                vector,
                                ( & matrix ).into_peekable_matrix(),
                                PrimeOrderField::new(7), // the finite field of order 7
                                OrderOperatorAuto, // this compares tuples according to their lexicographic order
                            );
        // the product should return the following entries in sequence: (1,1), (1,1), (0,1), (0,6)       
        itertools::assert_equal( product, vec![(1,1), (1,1), (0,6), (0,1)] )
    }

    #[test]
    fn doc_test_vector_matrix_product_minor_descend_simplified() {
        use crate::algebra::matrices::operations::multiply::multiply_column_vector_with_matrix_and_return_reversed;
        use crate::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
        use crate::algebra::rings::types::field_prime_order::PrimeOrderField;
        use crate::utilities::order::OrderOperatorByKey;

        // a row-major matrix representation with usize row indices and isize column indices
        let matrix      =   VecOfVec::new(   vec![   vec![ (0isize, 1), (1isize, 6) ], 
                                                           vec![ (0isize, 1), (1isize, 1) ],     ]     ).unwrap();;
        // the vector [1, 1]
        let vector      =   vec![ (0isize, 1), (1isize, 1) ];
        
        // the product
        let product     =   multiply_column_vector_with_matrix_and_return_reversed(
                                vector,
                                ( & matrix ).into_peekable_matrix(),
                                PrimeOrderField::new(7), // the finite field of order 7
                                OrderOperatorByKey::new(), // this compares tuples according to their lexicographic order
                            );
        // the product should equal vector [0 2]        
        itertools::assert_equal( product, vec![(1usize, 2)] )
    }
    
    







    #[test]
    fn doc_test_matrix_product_row_unsimplified() {

        // Import the necessary traits and structs
        use crate::algebra::rings::types::native::RingOperatorForNativeRustNumberType;
        use crate::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
        use crate::algebra::matrices::query::MatrixOracle;
        use crate::algebra::matrices::types::product::ProductMatrix;
        use crate::algebra::matrices::types::packet::MatrixAlgebraPacket;
        use std::iter::FromIterator;

        // Define the operator for the coefficient ring
        let ring_operator = RingOperatorForNativeRustNumberType::<f64>::new();     

        // Define matrix A, a 2x2 matrix with 1's above the diagonal and 0's below
        let matrix_1   =   VecOfVec::new(    vec![ vec![ (0,1.), (1,1.) ], vec![ (1,1.) ] ]    ).unwrap();
        // Define matrix B, a 2x2 matrix with 1's above the diagonal and 0's below
        let matrix_2   =   VecOfVec::new(    vec![ vec![ (0,1.), (1,1.) ], vec![ (1,1.) ] ]    ).unwrap();
        // Define references to the two arrays 
        let matrix_1_packet    =   MatrixAlgebraPacket::with_default_order_and_f64_coefficients( &matrix_1 );
        let matrix_2_packet    =   MatrixAlgebraPacket::with_default_order_and_f64_coefficients( &matrix_2 );         
        // Define the lazy product of A and B
        let product     =   ProductMatrix::new( 
                                    matrix_1_packet,                 // matrix A
                                    matrix_2_packet,                 // matrix B
                                );
                            
        // First, check the output iterators themselves (these are wrapped in `Simplify` structs).
        // ---------------------------------------------------------------------------------------
                            
        // Use this object to create a vector-of-vectors that represents the product
        let output =   Vec::from_iter(
                                                (0..2)
                                                    .map(   |x| 
                                                            Vec::from_iter(
                                                                    product
                                                                    .row(&x)
                                                                )
                                                        )
                                            );
                                        
        // Check that the answer is correct                                    
        assert_eq!(     
                output,
                vec![ vec![(0,1.), (1,2.)], vec![(1,1.)]  ]
            ); 
        
        // Second, check the underlying, unsimplified iterators (these are are contained inside the `Simplify` structs).
        // -------------------------------------------------------------------------------------------------------------
        
        // Use this object to create a vector-of-vectors that represents the product
        let output =   Vec::from_iter(
                                                (0..2)
                                                    .map(   |x| 
                                                            Vec::from_iter(
                                                                    product
                                                                    .row(&x)
                                                                    .unsimplified // this unwraps the inner iterator
                                                                )
                                                        )
                                            );
                                        
        // Check that the answer is correct                                    
        assert_eq!(     
                output,
                vec![ vec![(0,1.), (1,1.), (1,1.)], vec![(1,1.)]  ]
            ); 
    }

}



//  ---------------------------------------------------------------------------
//  TEST
//  ---------------------------------------------------------------------------


#[cfg(test)]
mod tests {
    use std::iter::FromIterator;

    use itertools::Itertools;

    // Note this useful idiom: importing names from outer (for mod tests) scope.
    use super::*;
    use crate::algebra::matrices::types::packet::MatrixAlgebraPacket;
    use crate::algebra::matrices::types::vec_of_vec::sorted::VecOfVec;
    use crate::algebra::rings::types::native::{RingOperatorForNativeRustNumberType};
    use crate::utilities::order::OrderOperatorByLessThan;


    // Test that lazy MATRIX-MATRIX multiplication works properly.
    #[test]
    pub fn matrix_by_matrix_multiply_major_ascend_test_1() {

        // Define the operator for the coefficient ring
        let ring_operator = RingOperatorForNativeRustNumberType::<f64>::new();     
        
        // Define the factor A, a 2x2 matrix with 1's above the diagonal and 0's below.
        let matrix_1   =   VecOfVec::new(
                                                    // MajorDimension::Row,
                                             vec![ vec![ (0,1.), (1,1.) ], vec![ (1,1.) ] ]
                                                ).ok().unwrap();

        // Define the factor B, a 2x2 matrix with 1's above the diagonal and 0's below.
        let matrix_2   =   VecOfVec::new(
                                                    // MajorDimension::Row,
                                             vec![ vec![ (0,1.), (1,1.) ], vec![ (1,1.) ] ]
                                                ).ok().unwrap();
        let matrix_1_packet    =   MatrixAlgebraPacket::with_default_order_and_f64_coefficients( &matrix_1 );
        let matrix_2_packet    =   MatrixAlgebraPacket::with_default_order_and_f64_coefficients( &matrix_2 );        

        // Define the lazy product of A and B
        let product     =   ProductMatrix::new( 
                                                                        matrix_1_packet, // first borrow is to create something that implements the oracle trait, second borrow is needed to meet requirements of the function syntax
                                                                        matrix_2_packet,
                                                                    );

        // CHECK THE MAJOR ITERATOR ITSELF

        // Use this object to create a vector-of-vectors that represents the product 
        let output =   Vec::from_iter(
                                                (0..2)
                                                    .map(   |x| 
                                                            Vec::from_iter(
                                                                    product
                                                                    .row(&x)
                                                                )
                                                        )
                                            );
        
        // Check that the answer is correct                                    
        assert_eq!(     
                output,
                vec![ vec![(0,1.), (1,2.)], vec![(1,1.)]  ]
            );     

        // CHECK THE UNDERLYING **UNSIMPLIFIED** ITERATOR   
        
        // Use this object to create a vector-of-vectors that represents the product 
        let output =   Vec::from_iter(
                                                (0..2)
                                                    .map(   |x| 
                                                            Vec::from_iter(
                                                                    product
                                                                    .row(&x)
                                                                    .unsimplified
                                                                )
                                                        )
                                            );
        
        // Check that the answer is correct                                    
        assert_eq!(     
                output,
                vec![ vec![(0,1.), (1,1.), (1,1.)], vec![(1,1.)]  ]
            );           
        
    }


    // Test that lazy MATRIX-MATRIX multiplication works properly - another way.
    #[test]
    pub fn matrix_by_matrix_multiply_major_ascend_test_2() { 
        
        // Define factor A 
        let matrix_1 =   
            VecOfVec::<usize,i64>::new(
                    vec![ 
                            vec![                  ],
                            vec![ (0,0)            ],                                                            
                            vec![ (0,4),   (1,-1)  ], 
                            vec![ (0,5),   (1,7)   ], 
                            vec![ (0,11),  (1,13)  ],                                                         
                    ]
                ).ok().unwrap();
        // Define factor B 
        let matrix_2 =    
            VecOfVec::<usize,i64>::new(
                    vec![                                                                                                                           
                            vec![ (0,1),   (1,2),   (2,3) ], 
                            vec![ (0,4),   (1,5),   (2,6) ],
                            vec![                         ],  
                            vec![ (0,0)                   ],                                                              
                        ]
                ).ok().unwrap();
        let matrix_1_packet    =   MatrixAlgebraPacket::with_default_order_and_i64_coefficients( &matrix_1 );
        let matrix_2_packet    =   MatrixAlgebraPacket::with_default_order_and_i64_coefficients( &matrix_2 );        

        // This is the *actual* product A*B, if A and B are row-major.
        let product_true: Vec<Vec<(usize,i64)>>   =   
                    vec![ 
                            vec![                                   ], 
                            vec![                                   ],                                                             
                            vec![          (1,3),     (2,6)         ], 
                            vec![ (0,33),  (1,45),    (2,57)        ],
                            vec![ (0,63),  (1,87),    (2,111)       ],                                                             
                        ];                                              

        // Define the lazy product of A and B
        let product     =   ProductMatrix::new( 
                                                                matrix_1_packet,  // first borrow is to create something that implements the oracle trait, second borrow is needed to meet requirements of the function syntax
                                                                matrix_2_packet, 
                                                        );


        // Check that each row of the lazy MATRIX product agrees with each row of the true product.
        for row_index in 0 .. 5 {
            let vec_lazy   =   product
                                                .row( &row_index )
                                                .collect_vec();
            let vec_true =  product_true[ row_index ].clone();
            assert_eq!( vec_lazy, vec_true )
        }   
        
    }  
    

   // Test that lazy MATRIX-VECTOR multiplication works properly.
   #[test]
   pub fn matrix_by_vector_multiply_major_ascend_test_2() {

       // Define the operator for the coefficient ring
       let ring_operator = RingOperatorForNativeRustNumberType::<i32>::new();     
       
       // Define factor A 
       let matrix_1 =   
           VecOfVec::new(
                   vec![ 
                           vec![                  ],
                           vec![ (0,0)            ],                                                            
                           vec![ (0,4),   (1,-1)  ], 
                           vec![ (0,5),   (1,7)   ], 
                           vec![ (0,11),  (1,13)  ],                                                         
                   ]
               ).ok().unwrap();
       // Define factor B 
       let matrix_2 =    
           VecOfVec::new(
                   vec![                                                                                                                           
                           vec![ (0,1),   (1,2),   (2,3) ], 
                           vec![ (0,4),   (1,5),   (2,6) ],
                           vec![                         ],  
                           vec![ (0,0)                   ],                                                              
                       ]
                ).ok().unwrap();
       // This is the *actual* product A*B, if A and B are row-major.
       let product_true   =   
            vec![ 
                    vec![                                   ], 
                    vec![                                   ],                                                             
                    vec![          (1,3),     (2,6)         ], 
                    vec![ (0,33),  (1,45),    (2,57)        ],
                    vec![ (0,63),  (1,87),    (2,111)       ],                                                             
                ];                                                                             


       // Check that each row of the lazy MATRIX product agrees with each row of the true product.
       for row_index in 0 .. 5 {
           let vec_lazy   =   multiply_row_vector_with_matrix(
                                                    (& matrix_1).row( &row_index ).clone(),               
                                                    & matrix_2,  // first borrow is to create something that implements the oracle trait, second borrow is needed to meet requirements of the function syntax
                                                    ring_operator,
                                                    OrderOperatorByLessThan::new( |x:&(i32, i32), y:&(i32, i32)| x.key() < y.key()  )
                                                )
                                               .collect_vec();
           let vec_true =  product_true[ row_index ].clone();
           assert_eq!( vec_lazy, vec_true )
       }   
       
   } 

}