pub mod core;
pub mod neural;
pub mod bench;
pub mod monitor;
pub mod security;
pub mod algorithms;
pub mod dashboard;
pub mod accel;
pub mod platform;
#[cfg(target_os = "windows")]
pub mod windows;
#[cfg(target_os = "windows")]
pub mod tray;
#[cfg(target_os = "windows")]
pub mod browser;
#[cfg(target_os = "macos")]
pub mod macos;
pub mod apps;
pub use core::config::OptimizerConfig;
#[cfg(target_os = "windows")]
pub use core::optimizer::IntelligentOptimizer;
#[cfg(target_os = "windows")]
pub use neural::engine::NeuralDecisionEngine;
#[cfg(target_os = "windows")]
pub use monitor::realtime::RealtimeMonitor;
pub use algorithms::{MinCutClusterer, ProcessPageRank, CountMinSketch, SpectralAnalyzer};
pub use bench::{AdvancedBenchmarkRunner, BenchmarkSuite};
pub use dashboard::DashboardData;
#[cfg(target_os = "windows")]
pub use dashboard::DashboardServer;
#[cfg(target_os = "windows")]
pub use windows::safety::{SafetyConfig, SafetyGuard};
#[cfg(target_os = "windows")]
pub use security::privileges::PrivilegeManager;
#[cfg(target_os = "macos")]
pub use macos::safety::{SafetyConfig, SafetyGuard};
pub use apps::{
BrowserOptimizer, ElectronManager, DockerManager, LeakDetector, SmartSuggestions,
AppCategory, AppInfo, OptimizationAction, OptimizationResult,
};
#[cfg(feature = "ai")]
pub mod ai;