├── .gitattributes ├── .gitignore ├── Aircraft.txt ├── Aircraft_1.txt ├── Airport.txt ├── AirportClass.py ├── BestGene.txt ├── BestGeneProportion.txt ├── EnvironmentData.py ├── FlightClass.py ├── GA.py ├── PassengerClass.py ├── Paxinfo.txt ├── PaxinfoAfterCheck.txt ├── PlaneClass.py ├── README.md ├── Schedules.txt ├── Schedules_1.txt ├── TestEnvironment.py └── errorPaxInfo.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/.gitignore -------------------------------------------------------------------------------- /Aircraft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/Aircraft.txt -------------------------------------------------------------------------------- /Aircraft_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/Aircraft_1.txt -------------------------------------------------------------------------------- /Airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/Airport.txt -------------------------------------------------------------------------------- /AirportClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/AirportClass.py -------------------------------------------------------------------------------- /BestGene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/BestGene.txt -------------------------------------------------------------------------------- /BestGeneProportion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/BestGeneProportion.txt -------------------------------------------------------------------------------- /EnvironmentData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/EnvironmentData.py -------------------------------------------------------------------------------- /FlightClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/FlightClass.py -------------------------------------------------------------------------------- /GA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/GA.py -------------------------------------------------------------------------------- /PassengerClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/PassengerClass.py -------------------------------------------------------------------------------- /Paxinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/Paxinfo.txt -------------------------------------------------------------------------------- /PaxinfoAfterCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/PaxinfoAfterCheck.txt -------------------------------------------------------------------------------- /PlaneClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/PlaneClass.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/README.md -------------------------------------------------------------------------------- /Schedules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/Schedules.txt -------------------------------------------------------------------------------- /Schedules_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/Schedules_1.txt -------------------------------------------------------------------------------- /TestEnvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/TestEnvironment.py -------------------------------------------------------------------------------- /errorPaxInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgdd66/FlightRecovery/HEAD/errorPaxInfo.txt --------------------------------------------------------------------------------