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
#![allow(clippy::assign_op_pattern)]
use crate::{simd::*, *};
use std::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Sub, SubAssign};

#[derive(Clone, Copy)]
struct DualNumberGroups {
    /// 1, e01
    g0: Simd32x2,
}

#[derive(Clone, Copy)]
pub union DualNumber {
    groups: DualNumberGroups,
    /// 1, e01, 0, 0
    elements: [f32; 4],
}

impl DualNumber {
    #[allow(clippy::too_many_arguments)]
    pub const fn new(scalar: f32, e01: f32) -> Self {
        Self { elements: [scalar, e01, 0.0, 0.0] }
    }
    pub const fn from_groups(g0: Simd32x2) -> Self {
        Self { groups: DualNumberGroups { g0 } }
    }
    #[inline(always)]
    pub fn group0(&self) -> Simd32x2 {
        unsafe { self.groups.g0 }
    }
    #[inline(always)]
    pub fn group0_mut(&mut self) -> &mut Simd32x2 {
        unsafe { &mut self.groups.g0 }
    }
}

const DUALNUMBER_INDEX_REMAP: [usize; 2] = [0, 1];

impl std::ops::Index<usize> for DualNumber {
    type Output = f32;

    fn index(&self, index: usize) -> &Self::Output {
        unsafe { &self.elements[DUALNUMBER_INDEX_REMAP[index]] }
    }
}

impl std::ops::IndexMut<usize> for DualNumber {
    fn index_mut(&mut self, index: usize) -> &mut Self::Output {
        unsafe { &mut self.elements[DUALNUMBER_INDEX_REMAP[index]] }
    }
}

impl std::convert::From<DualNumber> for [f32; 2] {
    fn from(vector: DualNumber) -> Self {
        unsafe { [vector.elements[0], vector.elements[1]] }
    }
}

impl std::convert::From<[f32; 2]> for DualNumber {
    fn from(array: [f32; 2]) -> Self {
        Self { elements: [array[0], array[1], 0.0, 0.0] }
    }
}

impl std::fmt::Debug for DualNumber {
    fn fmt(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
        formatter
            .debug_struct("DualNumber")
            .field("1", &self[0])
            .field("e01", &self[1])
            .finish()
    }
}

impl Add<DualNumber> for f32 {
    type Output = DualNumber;

    fn add(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self) * Simd32x2::from([1.0, 0.0]) + other.group0() } }
    }
}

impl Sub<DualNumber> for f32 {
    type Output = DualNumber;

    fn sub(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self) * Simd32x2::from([1.0, 0.0]) - other.group0() } }
    }
}

impl GeometricProduct<DualNumber> for f32 {
    type Output = DualNumber;

    fn geometric_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self) * other.group0() } }
    }
}

impl RegressiveProduct<DualNumber> for f32 {
    type Output = f32;

    fn regressive_product(self, other: DualNumber) -> f32 {
        self * other.group0()[1]
    }
}

impl OuterProduct<DualNumber> for f32 {
    type Output = DualNumber;

    fn outer_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self) * other.group0() } }
    }
}

impl InnerProduct<DualNumber> for f32 {
    type Output = DualNumber;

    fn inner_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self) * other.group0() } }
    }
}

impl LeftContraction<DualNumber> for f32 {
    type Output = DualNumber;

    fn left_contraction(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self) * other.group0() } }
    }
}

impl RightContraction<DualNumber> for f32 {
    type Output = f32;

    fn right_contraction(self, other: DualNumber) -> f32 {
        self * other.group0()[0]
    }
}

impl ScalarProduct<DualNumber> for f32 {
    type Output = f32;

    fn scalar_product(self, other: DualNumber) -> f32 {
        self * other.group0()[0]
    }
}

impl Zero for DualNumber {
    fn zero() -> Self {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(0.0) } }
    }
}

impl One for DualNumber {
    fn one() -> Self {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from([1.0, 0.0]) } }
    }
}

impl Neg for DualNumber {
    type Output = DualNumber;

    fn neg(self) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from(-1.0) } }
    }
}

impl Automorphism for DualNumber {
    type Output = DualNumber;

    fn automorphism(self) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() } }
    }
}

impl Reversal for DualNumber {
    type Output = DualNumber;

    fn reversal(self) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from([1.0, -1.0]) } }
    }
}

impl Conjugation for DualNumber {
    type Output = DualNumber;

    fn conjugation(self) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from([1.0, -1.0]) } }
    }
}

impl Dual for DualNumber {
    type Output = DualNumber;

    fn dual(self) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: swizzle!(self.group0(), 1, 0) } }
    }
}

impl Into<f32> for DualNumber {
    fn into(self) -> f32 {
        self.group0()[0]
    }
}

impl Add<f32> for DualNumber {
    type Output = DualNumber;

    fn add(self, other: f32) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() + Simd32x2::from(other) * Simd32x2::from([1.0, 0.0]) } }
    }
}

impl AddAssign<f32> for DualNumber {
    fn add_assign(&mut self, other: f32) {
        *self = (*self).add(other);
    }
}

impl Sub<f32> for DualNumber {
    type Output = DualNumber;

    fn sub(self, other: f32) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() - Simd32x2::from(other) * Simd32x2::from([1.0, 0.0]) } }
    }
}

impl SubAssign<f32> for DualNumber {
    fn sub_assign(&mut self, other: f32) {
        *self = (*self).sub(other);
    }
}

impl GeometricProduct<f32> for DualNumber {
    type Output = DualNumber;

    fn geometric_product(self, other: f32) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from(other) } }
    }
}

impl RegressiveProduct<f32> for DualNumber {
    type Output = f32;

    fn regressive_product(self, other: f32) -> f32 {
        self.group0()[1] * other
    }
}

impl OuterProduct<f32> for DualNumber {
    type Output = DualNumber;

    fn outer_product(self, other: f32) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from(other) } }
    }
}

impl InnerProduct<f32> for DualNumber {
    type Output = DualNumber;

    fn inner_product(self, other: f32) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from(other) } }
    }
}

impl LeftContraction<f32> for DualNumber {
    type Output = f32;

    fn left_contraction(self, other: f32) -> f32 {
        self.group0()[0] * other
    }
}

impl RightContraction<f32> for DualNumber {
    type Output = DualNumber;

    fn right_contraction(self, other: f32) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from(other) } }
    }
}

impl ScalarProduct<f32> for DualNumber {
    type Output = f32;

    fn scalar_product(self, other: f32) -> f32 {
        self.group0()[0] * other
    }
}

impl Add<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn add(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() + other.group0() } }
    }
}

impl AddAssign<DualNumber> for DualNumber {
    fn add_assign(&mut self, other: DualNumber) {
        *self = (*self).add(other);
    }
}

impl Sub<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn sub(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() - other.group0() } }
    }
}

impl SubAssign<DualNumber> for DualNumber {
    fn sub_assign(&mut self, other: DualNumber) {
        *self = (*self).sub(other);
    }
}

impl Mul<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn mul(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * other.group0() } }
    }
}

impl MulAssign<DualNumber> for DualNumber {
    fn mul_assign(&mut self, other: DualNumber) {
        *self = (*self).mul(other);
    }
}

impl Div<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn div(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from([self.group0()[0], self.group0()[1]]) * Simd32x2::from([1.0, 1.0]) / Simd32x2::from([other.group0()[0], other.group0()[1]]) * Simd32x2::from([1.0, 1.0]) } }
    }
}

impl DivAssign<DualNumber> for DualNumber {
    fn div_assign(&mut self, other: DualNumber) {
        *self = (*self).div(other);
    }
}

impl GeometricProduct<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn geometric_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self.group0()[0]) * other.group0() + self.group0() * Simd32x2::from(other.group0()[0]) * Simd32x2::from([0.0, 1.0]) } }
    }
}

impl RegressiveProduct<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn regressive_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self.group0()[1]) * other.group0() + Simd32x2::from(self.group0()[0]) * swizzle!(other.group0(), 1, 0) * Simd32x2::from([1.0, 0.0]) } }
    }
}

impl OuterProduct<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn outer_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self.group0()[0]) * other.group0() + self.group0() * Simd32x2::from(other.group0()[0]) * Simd32x2::from([0.0, 1.0]) } }
    }
}

impl InnerProduct<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn inner_product(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self.group0()[0]) * other.group0() + self.group0() * Simd32x2::from(other.group0()[0]) * Simd32x2::from([0.0, 1.0]) } }
    }
}

impl LeftContraction<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn left_contraction(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: Simd32x2::from(self.group0()[0]) * other.group0() } }
    }
}

impl RightContraction<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn right_contraction(self, other: DualNumber) -> DualNumber {
        DualNumber { groups: DualNumberGroups { g0: self.group0() * Simd32x2::from(other.group0()[0]) } }
    }
}

impl ScalarProduct<DualNumber> for DualNumber {
    type Output = f32;

    fn scalar_product(self, other: DualNumber) -> f32 {
        self.group0()[0] * other.group0()[0]
    }
}

impl SquaredMagnitude for DualNumber {
    type Output = f32;

    fn squared_magnitude(self) -> f32 {
        self.scalar_product(self.reversal())
    }
}

impl Magnitude for DualNumber {
    type Output = f32;

    fn magnitude(self) -> f32 {
        self.squared_magnitude().sqrt()
    }
}

impl Mul<f32> for DualNumber {
    type Output = DualNumber;

    fn mul(self, other: f32) -> DualNumber {
        self.geometric_product(other)
    }
}

impl MulAssign<f32> for DualNumber {
    fn mul_assign(&mut self, other: f32) {
        *self = (*self).mul(other);
    }
}

impl Signum for DualNumber {
    type Output = DualNumber;

    fn signum(self) -> DualNumber {
        self.geometric_product(1.0 / self.magnitude())
    }
}

impl Inverse for DualNumber {
    type Output = DualNumber;

    fn inverse(self) -> DualNumber {
        self.reversal().geometric_product(1.0 / self.squared_magnitude())
    }
}

impl Powi for DualNumber {
    type Output = DualNumber;

    fn powi(self, exponent: isize) -> DualNumber {
        if exponent == 0 {
            return DualNumber::one();
        }
        let mut x: DualNumber = if exponent < 0 { self.inverse() } else { self };
        let mut y: DualNumber = DualNumber::one();
        let mut n: isize = exponent.abs();
        while 1 < n {
            if n & 1 == 1 {
                y = x.geometric_product(y);
            }
            x = x.geometric_product(x);
            n = n >> 1;
        }
        x.geometric_product(y)
    }
}

impl GeometricQuotient<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn geometric_quotient(self, other: DualNumber) -> DualNumber {
        self.geometric_product(other.inverse())
    }
}

impl Transformation<DualNumber> for DualNumber {
    type Output = DualNumber;

    fn transformation(self, other: DualNumber) -> DualNumber {
        self.geometric_product(other).geometric_product(self.reversal())
    }
}

impl GeometricQuotient<f32> for DualNumber {
    type Output = DualNumber;

    fn geometric_quotient(self, other: f32) -> DualNumber {
        self.geometric_product(other.inverse())
    }
}

impl Transformation<f32> for DualNumber {
    type Output = f32;

    fn transformation(self, other: f32) -> f32 {
        self.geometric_product(other).geometric_product(self.reversal()).into()
    }
}

impl GeometricQuotient<DualNumber> for f32 {
    type Output = DualNumber;

    fn geometric_quotient(self, other: DualNumber) -> DualNumber {
        self.geometric_product(other.inverse())
    }
}

impl Transformation<DualNumber> for f32 {
    type Output = DualNumber;

    fn transformation(self, other: DualNumber) -> DualNumber {
        self.geometric_product(other).geometric_product(self.reversal())
    }
}