pictorus-blocks 0.0.0

Implementations of Pictorus blocks.
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
use core::ops::Sub;
use num_traits::One;
use pictorus_block_data::{BlockData as OldBlockData, FromPass};
use pictorus_traits::{Matrix, Pass, PassBy, ProcessBlock};

use crate::traits::{Apply, ApplyInto, MatrixOps, Scalar};

/// Performs logical operations on inputs.
///
/// Currently supports the following methods:
/// - And
/// - Or
/// - Nor
/// - Nand
pub struct LogicalBlock<T>
where
    T: Apply<Parameters>,
    T::Output: Finalize,
    OldBlockData: FromPass<<T as Apply<Parameters>>::Output>,
{
    store: Option<T::Output>,
    pub data: OldBlockData,
}

impl<T> Default for LogicalBlock<T>
where
    T: Apply<Parameters>,
    T::Output: Finalize,
    OldBlockData: FromPass<<T as Apply<Parameters>>::Output>,
{
    fn default() -> Self {
        Self {
            store: None,
            data: <OldBlockData as FromPass<T::Output>>::from_pass(T::Output::default().as_by()),
        }
    }
}

impl<T> ProcessBlock for LogicalBlock<T>
where
    T: Apply<Parameters>,
    T::Output: Finalize,
    OldBlockData: FromPass<<T as Apply<Parameters>>::Output>,
{
    type Inputs = T;
    type Output = T::Output;
    type Parameters = Parameters;
    fn process<'b>(
        &'b mut self,
        parameters: &Self::Parameters,
        _context: &dyn pictorus_traits::Context,
        inputs: PassBy<'_, Self::Inputs>,
    ) -> PassBy<'b, Self::Output> {
        self.store = None;
        T::apply(inputs, parameters, &mut self.store);
        let result = T::Output::finalize(parameters.method, &mut self.store);
        self.data = OldBlockData::from_pass(result);
        result
    }
}

fn perform_op<S: Scalar + From<bool>>(input: S, dest: S, method: LogicalMethod) -> S {
    let x0 = input.is_truthy();
    let x1 = dest.is_truthy();
    let res = match method {
        LogicalMethod::And => x0 & x1,
        LogicalMethod::Or => x0 | x1,
        // NAND and NOR behave the same as OR and AND during
        // the calculation, but the final result is inverted in the finalize step
        LogicalMethod::Nand => x0 & x1,
        LogicalMethod::Nor => x0 | x1,
    };

    res.into()
}

// Compare scalar with scalar
impl<S: Scalar + From<bool>> ApplyInto<S, Parameters> for S {
    fn apply_into<'a>(
        input: PassBy<Self>,
        params: &Parameters,
        dest: &'a mut Option<S>,
    ) -> PassBy<'a, S> {
        match dest {
            Some(dest) => {
                *dest = perform_op(input, *dest, params.method);
            }
            None => {
                *dest = Some(input);
            }
        }

        dest.as_ref().unwrap().as_by()
    }
}

// Compare matrix and matrix
impl<const R: usize, const C: usize, S: Scalar + From<bool>> ApplyInto<Matrix<R, C, S>, Parameters>
    for Matrix<R, C, S>
{
    fn apply_into<'a>(
        input: PassBy<Self>,
        params: &Parameters,
        dest: &'a mut Option<Matrix<R, C, S>>,
    ) -> PassBy<'a, Matrix<R, C, S>> {
        match dest {
            Some(dest) => {
                input
                    .data
                    .as_flattened()
                    .iter()
                    .zip(dest.data.as_flattened_mut().iter_mut())
                    .for_each(|(input, dest)| {
                        *dest = perform_op(*input, *dest, params.method);
                    });
            }
            None => {
                *dest = Some(*input);
            }
        }

        dest.as_ref().unwrap().as_by()
    }
}

// Compare scalar with matrix
impl<const R: usize, const C: usize, S: Scalar + From<bool>> ApplyInto<Matrix<R, C, S>, Parameters>
    for S
{
    fn apply_into<'a>(
        input: PassBy<Self>,
        params: &Parameters,
        dest: &'a mut Option<Matrix<R, C, S>>,
    ) -> PassBy<'a, Matrix<R, C, S>> {
        match dest {
            Some(dest) => {
                dest.data.as_flattened_mut().iter_mut().for_each(|dest| {
                    *dest = perform_op(input, *dest, params.method);
                });
            }
            None => {
                *dest = Some(Matrix::<R, C, S>::from_element(input));
            }
        }

        dest.as_ref().unwrap().as_by()
    }
}

pub trait Finalize: Pass + Default {
    fn finalize(method: LogicalMethod, dest: &mut Option<Self>) -> PassBy<'_, Self>;
}

impl<S: Scalar + One + Sub<Output = S>> Finalize for S {
    fn finalize(method: LogicalMethod, dest: &mut Option<Self>) -> PassBy<'_, Self> {
        let input = dest.get_or_insert(S::default());
        let res = match method {
            LogicalMethod::Nor => S::one() - *input,
            LogicalMethod::Nand => S::one() - *input,
            _ => *input,
        };

        *dest = Some(res);
        dest.as_ref().unwrap().as_by()
    }
}

impl<const R: usize, const C: usize, S: Scalar + One + Sub<Output = S>> Finalize
    for Matrix<R, C, S>
{
    fn finalize(method: LogicalMethod, dest: &mut Option<Self>) -> PassBy<'_, Self> {
        let dest = dest.get_or_insert(Matrix::<R, C, S>::default());
        dest.data.as_flattened_mut().iter_mut().for_each(|dest| {
            *dest = match method {
                LogicalMethod::Nor => S::one() - *dest,
                LogicalMethod::Nand => S::one() - *dest,
                _ => *dest,
            };
        });

        dest.as_by()
    }
}

#[derive(Debug, Clone, Copy, strum::EnumString)]
/// Logical methods that can be applied
pub enum LogicalMethod {
    /// Logical AND operation
    And,
    /// Logical OR operation
    Or,
    /// Logical NOR operation (NOT OR)
    Nor,
    /// Logical NAND operation (NOT AND)
    Nand,
}

/// Parameters for the logical block
pub struct Parameters {
    /// The logical method to use
    method: LogicalMethod,
}

impl Parameters {
    pub fn new(method: &str) -> Self {
        Self {
            method: method.parse().expect("Failed to parse logical method."),
        }
    }
}

#[cfg(test)]
mod tests {
    use crate::testing::StubContext;

    use super::*;

    #[test]
    fn test_logical_and_scalar() {
        let ctxt = StubContext::default();
        let params = Parameters::new("And");
        let mut block = LogicalBlock::<(f64, f64, f64)>::default();

        // All zero aka false inputs = false output
        let res = block.process(&params, &ctxt, (0.0, 0.0, 0.0));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);

        // Some zero inputs = false output
        let res = block.process(&params, &ctxt, (1.0, 0.0, 1.0));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);

        // All non-zero inputs = true output
        let res = block.process(&params, &ctxt, (1.0, 1.0, 1.0));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);

        // Even floats and negative data!
        let res = block.process(&params, &ctxt, (1.0, -2.0, 3.5));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);
    }

    #[test]
    fn test_logical_or_scalar() {
        let ctxt = StubContext::default();
        let params = Parameters::new("Or");
        let mut block = LogicalBlock::<(f64, f64, f64)>::default();

        // All zero aka false inputs = false output
        let res = block.process(&params, &ctxt, (0.0, 0.0, 0.0));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);

        // Some zero inputs = true output
        let res = block.process(&params, &ctxt, (1.0, 0.0, 1.0));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);

        // All non-zero inputs = true output
        let res = block.process(&params, &ctxt, (1.0, 1.0, 1.0));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);

        // Even floats and negative data!
        let res = block.process(&params, &ctxt, (1.0, -2.0, 3.5));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);
    }

    #[test]
    fn test_logical_nor_scalar() {
        let ctxt = StubContext::default();
        let params = Parameters::new("Nor");
        let mut block = LogicalBlock::<(f64, f64, f64)>::default();

        // These tests should be the opposite results of the OR tests

        // All zero aka false inputs = true output
        let res = block.process(&params, &ctxt, (0.0, 0.0, 0.0));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);

        // Some zero inputs = false output
        let res = block.process(&params, &ctxt, (1.0, 0.0, 1.0));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);

        // All non-zero inputs = false output
        let res = block.process(&params, &ctxt, (1.0, 1.0, 1.0));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);

        // Even floats and negative data!
        let res = block.process(&params, &ctxt, (1.0, -2.0, 3.5));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);
        assert_eq!(block.data.scalar(), 0.0);
    }

    #[test]
    fn test_logical_nand_scalar() {
        let ctxt = StubContext::default();
        let params = Parameters::new("Nand");
        let mut block = LogicalBlock::<(f64, f64, f64)>::default();

        // These tests should be the opposite results of the AND tests

        // All zero aka false inputs = true output
        let res = block.process(&params, &ctxt, (0.0, 0.0, 0.0));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);

        // Some zero inputs = true output
        let res = block.process(&params, &ctxt, (1.0, 0.0, 1.0));
        assert_eq!(res, 1.0);
        assert_eq!(block.data.scalar(), 1.0);

        // All non-zero inputs = false output
        let res = block.process(&params, &ctxt, (1.0, 1.0, 1.0));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);

        // Even floats and negative data!
        let res = block.process(&params, &ctxt, (1.0, -2.0, 3.5));
        assert_eq!(res, 0.0);
        assert_eq!(block.data.scalar(), 0.0);
    }

    #[test]
    fn test_matrix_ops() {
        let ctxt = StubContext::default();
        let mut params = Parameters::new("And");
        let mut block =
            LogicalBlock::<(Matrix<2, 2, f64>, Matrix<2, 2, f64>, Matrix<2, 2, f64>)>::default();

        let input = (
            &Matrix {
                data: [[1.0, 0.0], [0.0, 1.0]],
            },
            &Matrix {
                data: [[0.0, 1.0], [1.0, 0.0]],
            },
            &Matrix {
                data: [[1.0, 1.0], [1.0, 1.0]],
            },
        );

        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[0.0, 0.0], [0.0, 0.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );

        params.method = LogicalMethod::Or;
        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[1.0, 1.0], [1.0, 1.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );

        params.method = LogicalMethod::Nor;
        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[0.0, 0.0], [0.0, 0.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );

        params.method = LogicalMethod::Nand;
        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[1.0, 1.0], [1.0, 1.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );
    }

    #[test]
    fn test_matrix_scalar_ops() {
        let ctxt = StubContext::default();
        let mut params = Parameters::new("And");
        let mut block = LogicalBlock::<(Matrix<2, 2, f64>, f64)>::default();

        let input = (
            &Matrix {
                data: [[1.0, 0.0], [0.0, 1.0]],
            },
            1.0,
        );

        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[1.0, 0.0], [0.0, 1.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );

        params.method = LogicalMethod::Or;
        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[1.0, 1.0], [1.0, 1.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );

        params.method = LogicalMethod::Nor;
        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[0.0, 0.0], [0.0, 0.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );

        params.method = LogicalMethod::Nand;
        let res = block.process(&params, &ctxt, input);
        let expected = Matrix {
            data: [[0.0, 1.0], [1.0, 0.0]],
        };
        assert_eq!(res, &expected);
        assert_eq!(
            block.data.get_data().as_slice(),
            expected.data.as_flattened()
        );
    }
}