コード例 #1
0
ファイル: Program.cs プロジェクト: Donovancm/GA_DS
        public static void RunPrediction()
        {
            List <Person> population  = new List <Person>();
            List <double> coefficient = new List <double>();

            FileReader.CoefficientRead(coefficient);
            FileReader.ReadFile(population, 10);
            Prediction.CalcPrediction(coefficient, population, _selectedPerson);
        }