| 1 | package primitive |
| 2 | |
| 3 | type State struct { |
| 4 | Worker *Worker |
| 5 | Shape Shape |
| 6 | Alpha int |
| 7 | MutateAlpha bool |
| 8 | Score float64 |
| 9 | } |
| 10 | |
| 11 | func NewState(worker *Worker, shape Shape, alpha int) *State { |
| 12 | var mutateAlpha bool |
nothing calls this directly
no outgoing calls
no test coverage detected