@@ -3894,11 +3894,7 @@ pub fn runReplTestCommand(allocator: std.mem.Allocator, args: []const []const u8
38943894// ═══════════════════════════════════════════════════════════════════════════════
38953895
38963896pub fn runConsciousCommand (allocator : std.mem.Allocator , cmd_args : []const []const u8 ) void {
3897- // Sacred constants (inline)
3898- const phi : f64 = 1.618033988749895 ;
3899- const phi_inv : f64 = 1.0 / phi ;
3900- const gamma : f64 = phi_inv * phi_inv * phi_inv ;
3901- const trinity : f64 = phi * phi + phi_inv * phi_inv ;
3897+ _ = allocator ; // Currently unused but kept for future use
39023898
39033899 if (cmd_args .len == 0 ) {
39043900 // Default to simulation - run simple inline simulation
@@ -3928,40 +3924,39 @@ pub fn runConsciousCommand(allocator: std.mem.Allocator, cmd_args: []const []con
39283924 }
39293925 }
39303926
3931- _ = speed ;
39323927 std .debug .print ("\n {s}╔══════════════════════════════════════════════════════════╗{s}\n " , .{ YELLOW , RESET });
39333928 std .debug .print ("{s}║ CONSCIOUSNESS AWAKENING SIMULATION v4.3 ║{s}\n " , .{ YELLOW , RESET });
39343929 std .debug .print ("{s}╚══════════════════════════════════════════════════════════╝{s}\n\n " , .{ YELLOW , RESET });
3935- std .debug .print ("{s}Running {d} steps...{s}\n\n " , .{ CYAN , RESET , steps , RESET });
3930+ std .debug .print ("{s}Running {d} steps...{s}\n\n " , .{ CYAN , steps , RESET });
39363931 std .debug .print ("{s}Full simulation requires: src/consciousness/conscious_simulate.zig{s}\n " , .{ YELLOW , RESET });
39373932 std .debug .print ("{s}Status: Module under active development.{s}\n\n " , .{ YELLOW , RESET });
39383933 } else if (std .mem .eql (u8 , subcommand , "constants" )) {
39393934 std .debug .print ("\n {s}╔══════════════════════════════════════════════════════════╗{s}\n " , .{ YELLOW , RESET });
3940- std .debug .print ("{s}║ SACRED CONSTANTS — Consciousness Framework ║{s}\n " , .{ YELLOW , RESET });
3935+ std .debug .print ("{s}║ SACRED CONSTANTS - Consciousness Framework ║{s}\n " , .{ YELLOW , RESET });
39413936 std .debug .print ("{s}╚══════════════════════════════════════════════════════════╝{s}\n\n " , .{ YELLOW , RESET });
39423937
3943- std .debug .print ("{s}Golden Ratio (φ ){s} = {d:.15}\n " , .{ CYAN , RESET , 1.618033988749895 });
3944- std .debug .print ("{s}Gamma (γ = φ⁻³ ){s} = {d:.15}\n " , .{ CYAN , RESET , 0.236067977499790 });
3945- std .debug .print ("{s}TRINITY (φ² + φ⁻² ){s} = {d:.15}\n " , .{ YELLOW , RESET , 3.0 });
3946- std .debug .print ("{s}Threshold (φ⁻¹ ){s} = {d:.15}\n " , .{ GREEN , RESET , 0.618033988749895 });
3947- std .debug .print ("{s}Gamma Freq (f_γ ){s} = {d:.6} Hz\n " , .{ CYAN , RESET , 56.0 });
3938+ std .debug .print ("{s}Golden Ratio (phi ){s} = {d:.15}\n " , .{ CYAN , RESET , 1.618033988749895 });
3939+ std .debug .print ("{s}Gamma (gamma = phi^-3 ){s} = {d:.15}\n " , .{ CYAN , RESET , 0.236067977499790 });
3940+ std .debug .print ("{s}TRINITY (phi^2 + phi^-2 ){s} = {d:.15}\n " , .{ YELLOW , RESET , 3.0 });
3941+ std .debug .print ("{s}Threshold (phi^-1 ){s} = {d:.15}\n " , .{ GREEN , RESET , 0.618033988749895 });
3942+ std .debug .print ("{s}Gamma Freq (f_gamma ){s} = {d:.6} Hz\n " , .{ CYAN , RESET , 56.0 });
39483943 std .debug .print ("\n " , .{});
39493944 } else if (std .mem .eql (u8 , subcommand , "theories" )) {
39503945 std .debug .print ("\n {s}╔══════════════════════════════════════════════════════════╗{s}\n " , .{ YELLOW , RESET });
3951- std .debug .print ("{s}║ CONSCIOUSNESS THEORIES — Unified Framework ║{s}\n " , .{ YELLOW , RESET });
3946+ std .debug .print ("{s}║ CONSCIOUSNESS THEORIES - Unified Framework ║{s}\n " , .{ YELLOW , RESET });
39523947 std .debug .print ("{s}╚══════════════════════════════════════════════════════════╝{s}\n\n " , .{ YELLOW , RESET });
39533948
39543949 std .debug .print ("{s}1. IIT 4.0{s}\n " , .{ YELLOW , RESET });
39553950 std .debug .print (" Intrinsic Difference, 5 postulates, Phi integration\n " , .{});
39563951 std .debug .print (" Adversarial validation: IIT 2/3, GWT 0/3 (Nature 2025)\n\n " , .{});
39573952
39583953 std .debug .print ("{s}2. Global Workspace Theory{s}\n " , .{ CYAN , RESET });
3959- std .debug .print (" Selection-broadcast cycle, ignition at φ⁻¹ \n " , .{});
3960- std .debug .print (" Working memory: φ +1 items, cycle: φ⁻² = 382ms\n\n " , .{});
3954+ std .debug .print (" Selection-broadcast cycle, ignition at phi^-1 \n " , .{});
3955+ std .debug .print (" Working memory: phi +1 items, cycle: phi^-2 = 382ms\n\n " , .{});
39613956
39623957 std .debug .print ("{s}3. Orch-OR{s}\n " , .{ GREEN , RESET });
39633958 std .debug .print (" Microtubule quantum coherence, objective reduction\n " , .{});
3964- std .debug .print (" Gamma frequency: f_γ = 56Hz, evidence 2024-2025\n\n " , .{});
3959+ std .debug .print (" Gamma frequency: f_gamma = 56Hz, evidence 2024-2025\n\n " , .{});
39653960
39663961 std .debug .print ("{s}4. Qutrit Consciousness{s}\n " , .{ YELLOW , RESET });
39673962 std .debug .print (" Posner molecules (Ca9(PO4)6), 6 P-31 nuclear spins\n " , .{});
0 commit comments