├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Genetics ├── DNA.swift ├── DNADrawing.swift ├── FitnessCalculator.swift ├── Gene.swift ├── Genetics.h ├── ImageData.swift ├── Info.plist ├── Invidivual.swift ├── Mutable.swift ├── Polygon.swift ├── Population.swift ├── Random.swift └── Settings.swift ├── GeneticsTests └── Info.plist ├── README.md ├── screenshot1.png ├── swift-genetics.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Genetics.xcscheme │ └── swift-genetics.xcscheme └── swift-genetics ├── AppDelegate.swift ├── Base.lproj ├── LaunchScreen.xib └── Main.storyboard ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── image.imageset │ ├── Contents.json │ └── image@2x.png ├── Info.plist ├── IntroViewController.swift ├── MainViewController.swift └── Testing.playground ├── contents.xcplayground ├── section-1.swift └── timeline.xctimeline /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Genetics/DNA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/DNA.swift -------------------------------------------------------------------------------- /Genetics/DNADrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/DNADrawing.swift -------------------------------------------------------------------------------- /Genetics/FitnessCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/FitnessCalculator.swift -------------------------------------------------------------------------------- /Genetics/Gene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Gene.swift -------------------------------------------------------------------------------- /Genetics/Genetics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Genetics.h -------------------------------------------------------------------------------- /Genetics/ImageData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/ImageData.swift -------------------------------------------------------------------------------- /Genetics/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Info.plist -------------------------------------------------------------------------------- /Genetics/Invidivual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Invidivual.swift -------------------------------------------------------------------------------- /Genetics/Mutable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Mutable.swift -------------------------------------------------------------------------------- /Genetics/Polygon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Polygon.swift -------------------------------------------------------------------------------- /Genetics/Population.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Population.swift -------------------------------------------------------------------------------- /Genetics/Random.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Random.swift -------------------------------------------------------------------------------- /Genetics/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/Genetics/Settings.swift -------------------------------------------------------------------------------- /GeneticsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/GeneticsTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/README.md -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/screenshot1.png -------------------------------------------------------------------------------- /swift-genetics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /swift-genetics.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /swift-genetics.xcodeproj/xcshareddata/xcschemes/Genetics.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics.xcodeproj/xcshareddata/xcschemes/Genetics.xcscheme -------------------------------------------------------------------------------- /swift-genetics.xcodeproj/xcshareddata/xcschemes/swift-genetics.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics.xcodeproj/xcshareddata/xcschemes/swift-genetics.xcscheme -------------------------------------------------------------------------------- /swift-genetics/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/AppDelegate.swift -------------------------------------------------------------------------------- /swift-genetics/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /swift-genetics/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /swift-genetics/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /swift-genetics/Images.xcassets/image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Images.xcassets/image.imageset/Contents.json -------------------------------------------------------------------------------- /swift-genetics/Images.xcassets/image.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Images.xcassets/image.imageset/image@2x.png -------------------------------------------------------------------------------- /swift-genetics/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Info.plist -------------------------------------------------------------------------------- /swift-genetics/IntroViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/IntroViewController.swift -------------------------------------------------------------------------------- /swift-genetics/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/MainViewController.swift -------------------------------------------------------------------------------- /swift-genetics/Testing.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Testing.playground/contents.xcplayground -------------------------------------------------------------------------------- /swift-genetics/Testing.playground/section-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Testing.playground/section-1.swift -------------------------------------------------------------------------------- /swift-genetics/Testing.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NachoSoto/swift-genetics/HEAD/swift-genetics/Testing.playground/timeline.xctimeline --------------------------------------------------------------------------------