Allen-ISD-Computer-Science / REPO_AutomaticDifferentiation_2024

Given some input equation, provide a numerical derivative at a given point. The user have a standard text input for the equation and point and the algorithm will provide the numerical derivative along with the steps the algorithm took to derive it. This algorithm will be able to differentiate trigonometric function, logarithmic, and exponentials.
GNU General Public License v3.0
0 stars 0 forks source link

Task: Create a logger system #25

Closed DragonflyRobotics closed 7 months ago

DragonflyRobotics commented 7 months ago

Make a class-based logger system with a timestamped log file. There is no systematic way to trace the errors and potential debug when doing the recursive differentiation because of the stack. Implement a proper colored logger into the algorithm to allow for proper debugging and let it log to a file. Story #24

DragonflyRobotics commented 7 months ago

This issue was resolved with the merge a0cc996eb0ec3b4e12f0bcbe663353f63ac2d076. Now, we use a MasterLogger that autologs with timestamps to a log file.