/
GeekNerd
/
ServerModelingProject
Обзор
Документация
Войти
/
GeekNerd
/
ServerModelingProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Assets/Scripts/OptimizationLogic/Core/GaProgress.cs
20 строк
699 B
Gorney-Alex
Init
30 май 2026, 19:05
30 май 2026, 19:05
3cdcc49
Код
Авторство
О чём код?
namespace OptimizationLogic.Core { public readonly struct GaProgress { public readonly int Generation; public readonly int MaxGenerations; public readonly float BestFitness; public readonly float MaxTemperature; public readonly float RecirculationIndex; public GaProgress(int generation, int maxGenerations, float bestFitness, float maxTemperature, float recirculationIndex) { Generation = generation; MaxGenerations = maxGenerations; BestFitness = bestFitness; MaxTemperature = maxTemperature; RecirculationIndex = recirculationIndex; } } }