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
use crate::*;

/// A trait allowing the combination of matrices along their column axis.
pub trait AddColumns<T> {
    type Output;
    /// This is somewhat inefficient, it will often not be as efficient as [`std::vec::Vec::push`].
    /// ```text
    /// ┌───────┐             ┌─────┐  ┌───────────┐
    /// │ 1 3 5 │             │ 7 9 │  │ 1 3 5 7 9 │
    /// │ 2 4 6 │.add_columns(│ 8 1 │)=│ 2 4 6 8 1 │
    /// └───────┘             └─────┘  └───────────┘
    /// ```
    fn add_columns(self, columns: T) -> Self::Output;
}

// MatrixSxS
// --------------------------------------------------
// MatrixDxS
impl<T: Clone + Default + Copy, const ROWS: usize, const COLUMNS: usize, const C: usize>
    AddColumns<MatrixDxS<T, C>> for MatrixSxS<T, ROWS, COLUMNS>
where
    [(); ROWS * COLUMNS]:,
    [(); ROWS * { COLUMNS + C }]:,
{
    type Output = MatrixSxS<T, ROWS, { COLUMNS + C }>;
    fn add_columns(self, columns: MatrixDxS<T, C>) -> Self::Output {
        assert_eq!(ROWS, columns.rows, "Non-matching rows");
        let mut data = [Default::default(); ROWS * { COLUMNS + C }];

        for (new_column, (old_column, add_column)) in
            data.array_chunks_mut::<{ COLUMNS + C }>().zip(
                self.data
                    .array_chunks::<COLUMNS>()
                    .zip(columns.data.array_chunks::<C>()),
            )
        {
            // Copies old data
            new_column[..COLUMNS].clone_from_slice(old_column);
            // Copies new data
            new_column[COLUMNS..].clone_from_slice(add_column);
        }
        Self::Output { data }
    }
}
// MatrixSxD
impl<T: Clone + Default + Copy, const ROWS: usize, const COLUMNS: usize>
    AddColumns<MatrixSxD<T, ROWS>> for MatrixSxS<T, ROWS, COLUMNS>
where
    [(); ROWS * COLUMNS]:,
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixSxD<T, ROWS>) -> Self::Output {
        let data = self
            .data
            .array_chunks::<COLUMNS>()
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: COLUMNS + columns.columns,
        }
    }
}
// MatrixSxS
impl<T: Clone + Default + Copy, const ROWS: usize, const COLUMNS: usize, const C: usize>
    AddColumns<MatrixSxS<T, ROWS, C>> for MatrixSxS<T, ROWS, COLUMNS>
where
    [(); ROWS * COLUMNS]:,
    [(); ROWS * C]:,
    [(); ROWS * { COLUMNS + C }]:,
{
    type Output = MatrixSxS<T, ROWS, { COLUMNS + C }>;
    fn add_columns(self, columns: MatrixSxS<T, ROWS, C>) -> Self::Output {
        let mut data = [Default::default(); ROWS * { COLUMNS + C }];

        for (new_column, (old_column, add_column)) in
            data.array_chunks_mut::<{ COLUMNS + C }>().zip(
                self.data
                    .array_chunks::<COLUMNS>()
                    .zip(columns.data.array_chunks::<C>()),
            )
        {
            // Copies old data
            new_column[..COLUMNS].clone_from_slice(old_column);
            // Copies new data
            new_column[COLUMNS..].clone_from_slice(add_column);
        }
        Self::Output { data }
    }
}
// MatrixDxD
impl<T: Clone + Default + std::fmt::Debug, const ROWS: usize, const COLUMNS: usize>
    AddColumns<MatrixDxD<T>> for MatrixSxS<T, ROWS, COLUMNS>
where
    [(); ROWS * COLUMNS]:,
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixDxD<T>) -> Self::Output {
        let data = self
            .data
            .array_chunks::<COLUMNS>()
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: COLUMNS + columns.columns,
        }
    }
}
// MatrixSxD
// --------------------------------------------------
// MatrixSxD
impl<T: Clone + Default + Copy + std::fmt::Debug, const ROWS: usize> AddColumns<MatrixSxD<T, ROWS>>
    for MatrixSxD<T, ROWS>
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixSxD<T, ROWS>) -> Self::Output {
        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: self.columns + columns.columns,
        }
    }
}
// MatrixDxS
impl<T: Clone + Default + Copy + std::fmt::Debug, const ROWS: usize, const COLUMNS: usize>
    AddColumns<MatrixDxS<T, COLUMNS>> for MatrixSxD<T, ROWS>
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixDxS<T, COLUMNS>) -> Self::Output {
        assert_eq!(ROWS, columns.rows, "Non-matching rows");
        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.array_chunks::<COLUMNS>())
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: self.columns + COLUMNS,
        }
    }
}
// MatrixSxS
impl<T: Clone + Default + Copy + std::fmt::Debug, const ROWS: usize, const COLUMNS: usize>
    AddColumns<MatrixSxS<T, ROWS, COLUMNS>> for MatrixSxD<T, ROWS>
where
    [(); ROWS * COLUMNS]:,
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixSxS<T, ROWS, COLUMNS>) -> Self::Output {
        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.array_chunks::<COLUMNS>())
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: self.columns + COLUMNS,
        }
    }
}
// MatrixDxD
impl<T: Clone + Default + std::fmt::Debug, const ROWS: usize> AddColumns<MatrixDxD<T>>
    for MatrixSxD<T, ROWS>
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixDxD<T>) -> Self::Output {
        assert_eq!(ROWS, columns.rows, "Non-matching rows");
        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: self.columns + columns.columns,
        }
    }
}
// MatrixDxS
// --------------------------------------------------
// MatrixSxD
impl<T: Clone + Default + Copy + std::fmt::Debug, const ROWS: usize, const COLUMNS: usize>
    AddColumns<MatrixSxD<T, ROWS>> for MatrixDxS<T, COLUMNS>
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixSxD<T, ROWS>) -> Self::Output {
        assert_eq!(self.rows, ROWS, "Non-matching rows");
        let data = self
            .data
            .array_chunks::<COLUMNS>()
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: COLUMNS + columns.columns,
        }
    }
}
// MatrixDxS
impl<T: Clone + Default + Copy + std::fmt::Debug, const COLUMNS: usize, const C: usize>
    AddColumns<MatrixDxS<T, C>> for MatrixDxS<T, COLUMNS>
where
    [(); COLUMNS + C]:,
{
    type Output = MatrixDxS<T, { COLUMNS + C }>;
    fn add_columns(self, columns: MatrixDxS<T, C>) -> Self::Output {
        assert_eq!(self.rows, columns.rows, "Non-matching rows");
        let data = self
            .data
            .array_chunks::<COLUMNS>()
            .zip(columns.data.array_chunks::<C>())
            .map(|(a, b)| [a.as_slice(), b.as_slice()].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            rows: self.rows,
        }
    }
}
// MatrixSxS
impl<
        T: Clone + Default + Copy + std::fmt::Debug,
        const ROWS: usize,
        const COLUMNS: usize,
        const C: usize,
    > AddColumns<MatrixSxS<T, ROWS, C>> for MatrixDxS<T, COLUMNS>
where
    [(); ROWS * { COLUMNS + C }]:,
    [(); ROWS * C]:,
{
    type Output = MatrixSxS<T, ROWS, { COLUMNS + C }>;
    fn add_columns(self, columns: MatrixSxS<T, ROWS, C>) -> Self::Output {
        assert_eq!(self.rows, ROWS, "Non-matching rows");
        let mut data = [Default::default(); ROWS * { COLUMNS + C }];

        for (new_column, (old_column, add_column)) in
            data.array_chunks_mut::<{ COLUMNS + C }>().zip(
                self.data
                    .array_chunks::<COLUMNS>()
                    .zip(columns.data.array_chunks::<C>()),
            )
        {
            // Copies old data
            new_column[..COLUMNS].clone_from_slice(old_column);
            // Copies new data
            new_column[COLUMNS..].clone_from_slice(add_column);
        }
        Self::Output { data }
    }
}
// MatrixDxD
impl<T: Clone + Default + std::fmt::Debug, const COLUMNS: usize> AddColumns<MatrixDxD<T>>
    for MatrixDxS<T, COLUMNS>
{
    type Output = MatrixDxD<T>;
    fn add_columns(self, columns: MatrixDxD<T>) -> Self::Output {
        assert_eq!(self.rows, columns.rows, "Non-matching rows");
        let data = self
            .data
            .array_chunks::<COLUMNS>()
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            rows: self.rows,
            columns: COLUMNS + columns.columns,
        }
    }
}
// MatrixDxD
// --------------------------------------------------
// MatrixSxD
impl<T: Clone + Default + Copy + std::fmt::Debug, const ROWS: usize> AddColumns<MatrixSxD<T, ROWS>>
    for MatrixDxD<T>
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixSxD<T, ROWS>) -> Self::Output {
        assert_eq!(self.rows, ROWS, "Non-matching rows");

        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: self.columns + columns.columns,
        }
    }
}
// MatrixDxS
impl<T: Clone + Default + Copy + std::fmt::Debug, const COLUMNS: usize>
    AddColumns<MatrixDxS<T, COLUMNS>> for MatrixDxD<T>
{
    type Output = MatrixDxD<T>;
    fn add_columns(self, columns: MatrixDxS<T, COLUMNS>) -> Self::Output {
        assert_eq!(self.rows, columns.rows, "Non-matching rows");
        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.array_chunks::<COLUMNS>())
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            rows: self.rows,
            columns: self.columns + COLUMNS,
        }
    }
}
// MatrixSxS
impl<T: Clone + Default + Copy + std::fmt::Debug, const ROWS: usize, const COLUMNS: usize>
    AddColumns<MatrixSxS<T, ROWS, COLUMNS>> for MatrixDxD<T>
where
    [(); ROWS * COLUMNS]:,
{
    type Output = MatrixSxD<T, ROWS>;
    fn add_columns(self, columns: MatrixSxS<T, ROWS, COLUMNS>) -> Self::Output {
        assert_eq!(self.rows, ROWS, "Non-matching rows");

        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.array_chunks::<COLUMNS>())
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            columns: self.columns + COLUMNS,
        }
    }
}
// MatrixDxD
impl<T: Clone + Default + std::fmt::Debug> AddColumns<MatrixDxD<T>> for MatrixDxD<T> {
    type Output = MatrixDxD<T>;
    fn add_columns(self, columns: MatrixDxD<T>) -> Self::Output {
        assert_eq!(self.rows, columns.rows, "Non-matching rows");
        let data = self
            .data
            .chunks_exact(self.columns)
            .zip(columns.data.chunks_exact(columns.columns))
            .map(|(a, b)| [a, b].concat())
            .flatten()
            .collect::<Vec<_>>();
        Self::Output {
            data,
            rows: self.rows,
            columns: self.columns + columns.columns,
        }
    }
}