diff options
author | makefunstuff <[email protected]> | 2024-07-11 00:05:11 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-07-11 00:05:11 +0200 |
commit | fd3a727f4b4f819178225cdd87d8788b85c4b86c (patch) | |
tree | 58c6ee139f7768ec739477354af0faf001b2d40d /src/monkey_brain/test.zig | |
parent | e5a064e82fe7d36f4423abdf798f9f1f0a90ae0e (diff) | |
download | tinkerbunk-fd3a727f4b4f819178225cdd87d8788b85c4b86c.tar.gz |
some fixes and dummy neuron
Diffstat (limited to '')
-rw-r--r-- | src/monkey_brain/test.zig | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/monkey_brain/test.zig b/src/monkey_brain/test.zig index b3363e9..dd14718 100644 --- a/src/monkey_brain/test.zig +++ b/src/monkey_brain/test.zig @@ -1,3 +1,8 @@ -comptime { - _ = @import("perceptron.zig"); +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()); } |