concept_analyzer/genetic_github.rs
1//! GitHub-specific genetic algorithm components
2
3use serde::{Deserialize, Serialize};
4
5#[derive(Debug, Clone, Serialize, Deserialize)]
6pub struct RepositoryGenome;
7
8#[derive(Debug, Clone)]
9pub struct RepositoryFitnessFunction;
10
11#[derive(Debug, Clone)]
12pub struct RepositorySelectionEngine;
13
14#[derive(Debug, Clone)]
15pub struct RepositorySolutionProcessor;