Status channel in Grow()

This commit is contained in:
Ian Gulliver
2021-11-20 20:02:16 -10:00
parent 789e1e7333
commit 68ae25192e
3 changed files with 59 additions and 20 deletions

12
grow/status.go Normal file
View File

@@ -0,0 +1,12 @@
package grow
import "github.com/firestuff/subcoding/vm"
type Status struct {
TargetScore uint64
Attempts uint64
BestScore uint64
BestProgram *vm.Program
}