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 linear_lsq #8

Closed wingos80 closed 1 month ago

wingos80 commented 2 months ago

Use scipy.optimize.linear_lsq() 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

Closed with 646f4c2 where it was added as the "trf" LS solver option.