25 lines
469 B
Go
Raw Normal View History

package solver
import (
"sync/atomic"
"gitea.ligthert.net/golang/sudoku-funpark/controller"
)
2025-01-27 18:41:15 +01:00
// Struct/Interface containing all the important variabes it functions need access to.
type Solver struct {
Controller *controller.Controller
row1s []int
row2s []int
row3s []int
row4s []int
row5s []int
row6s []int
row7s []int
row8s []int
row9s []int
Iter int64
counter atomic.Int64
rates []int64
}