Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 525 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 525 Bytes

Genetic_Algorithm

First attempt at solving a genetic problem and optimizing runtime.

This is a program that takes in a target value and an expression length then finds an expression of the given length that evaluates to the target value. Current benchmarks will be recorded on commits, but this project is also to learn more about python, its modules, and IO -- not solely how fast the program can run.

Required Packages:

  • numpy
  • pandas
  • cython (only for optimizing by converting gen_alg_module.py into a C module)