Commit graph

11 commits

Author SHA1 Message Date
3538efa66e
Add results 2025-03-16 22:25:45 +01:00
16d16c7559
Use consistent hashing for rng seeding
Turns out the built-in `hash()` function in python doesn't behave
consistently across re-runs, and while it does return the same value
during the same program run, once the interpreter is closed and a new
instance is started, hash behaves differently.

This inconsistency is unacceptable, as the whole point of the seed is to
be able to achieve the same results consistently.
2025-03-16 22:02:46 +01:00
46bb8234cd
Show optimal value in the plot 2025-03-16 21:11:28 +01:00
9274b9ca69
Better initial setting values 2025-03-16 21:11:00 +01:00
3510ac1f63
Always return minimum point, not current center 2025-03-16 21:10:19 +01:00
fda8bb5a5d
Show a plot of the optimization algo progress 2025-03-16 16:35:33 +01:00
649b21c794
Add gui for changing settings
This adds a basic GUI through PyQt6, from where the user can control the
settings & run the program in a visual way. (task requirement, my
personal choice would've been CLI flags, but oh well)
2025-03-16 12:53:30 +01:00
9258805802
Optional include center search (LS/SHC switch)
This also moves the search function into a separate file.
2025-03-16 11:21:20 +01:00
6cb016d5e9
Basic local search 2025-03-16 11:21:20 +01:00
bcf22269e8
Add necessary utils 2025-03-16 11:21:20 +01:00
1bbd75a87b
Initial commit 2025-03-16 11:21:18 +01:00