Move parts of solver into its own package. Closes #19

Reviewed-on: #22
This commit is contained in:
2025-01-28 00:07:06 +01:00
parent 6241c0b720
commit 719dd43307
16 changed files with 312 additions and 370 deletions

18
controller/types.go Normal file
View File

@ -0,0 +1,18 @@
package controller
type Controller struct {
Blocks []int
Row1 string
Row2 string
Row3 string
Row4 string
Row5 string
Row6 string
Row7 string
Row8 string
Row9 string
Solutions []string
NumCPUs int
Split int
Part int
}