Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 865 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 865 Bytes

Genetic Algorithm

Directory structure

|- src: Source code.
	|- Image
		|- lena_circle.py: Code to draw using circles.
		|- lena_polygon.py: Code to draw using polygons.
		|- lena.png: Target image.
	|- Function Minimization
		|- phrase.py: Minimize a function that targets a text.
		|- minimizing_function.py: Minimizes the function -e^(-((x-1.5)^2 + (y+1)^2)) - e^(-(x^2 + y^2)).
	|- TSP
		|- tsp.py: Solves the TSP.
	|- genetic_algorithm.py: General Genetic Algorithm (must be imported when used with tsp.py, phrase.py or minimizing_function.py).
|- LinearProgrammingPresentation.pdf: Presentation about Genetic Algorithm for the Linear Programming assignment (in brazilian portuguese).
|- README.md: This readme file.

For further information, read the article posted on my website.