wingos80 / minesweeper_solved

A semi-full recreation of the game minesweeper made in Python using Pygame, with a solver...
1 stars 0 forks source link

Add nnls #7

Closed wingos80 closed 1 month ago

wingos80 commented 2 months ago

Use scipy.optimize.nnls() to solve the ls problem to constrain the solution vector instead of scipy.optimize.least_squares() or iterated scipy.sparse.linalg.lsqr().

eliasboegel commented 1 month ago

Added in 3bd3d15, unfortunately yields terrible solutions.