about summary refs log tree commit diff
path: root/src/monkey_brain/test.zig
blob: dd14718a05dac92a3289f4bdf1cb624ca6ebe856 (plain)
1
2
3
4
5
6
7
8
const std = @import("std");
const testing = std.testing;
pub const perceptron = @import("perceptron.zig");
pub const neuron = @import("neural_network/neuron.zig");

test {
    testing.refAllDeclsRecursive(@This());
}