lahlidahlia / cs350-convex-hull

Implementation of the convex hull for cs350.
MIT License
0 stars 0 forks source link

Modularize the program #9

Closed lahlidahlia closed 5 years ago

lahlidahlia commented 5 years ago

Refactor and separate the algorithms from the charting. This is important because we do not want the charting to interfere with timing our algorithms. Charting will naturally add some miscellaneous time into our data and we want to avoid it.

lahlidahlia commented 5 years ago

Also another nice thing to modularize is the data sample creation process. This way we can create different types of data samples without coupling too much with the algorithm code.