There was an error while loading. Please reload this page.
1 parent 974f093 commit b49ded1Copy full SHA for b49ded1
5 files changed
lib/compat.zig
@@ -6,3 +6,9 @@ comptime {
6
@compileError("This code requires Zig 0.16.0 or newer");
7
}
8
9
+
10
+test "zig version check" {
11
+ if (builtin.zig_version.major == 0 and builtin.zig_version.minor < 16) {
12
+ @compileError("This code requires Zig 0.16.0 or newer");
13
+ }
14
+}
lib/features/ai/federated/mod.zig
@@ -0,0 +1,2 @@
1
+//! Federated Learning module stub
2
+pub const Federated = struct {};
lib/features/ai/optimization/mod.zig
+//! Optimization module stub
+pub const Optimization = struct {};
lib/features/ai/reinforcement_learning/mod.zig
+//! Reinforcement Learning module stub
+pub const RL = struct {};
lib/features/ai/transformer/mod.zig
+//! Transformer module stub
+pub const Transformer = struct {};
0 commit comments