Skip to content

Instantly share code, notes, and snippets.

@elkuno213
elkuno213 / genetic.py
Created April 2, 2020 19:43 — forked from bellbind/genetic.py
[python]Genetic Algorithm example
"""Genetic Algorithmn Implementation
see:
http://www.obitko.com/tutorials/genetic-algorithms/ga-basic-description.php
"""
import random
class GeneticAlgorithm(object):
def __init__(self, genetics):
self.genetics = genetics
pass