| 6 | ) |
| 7 | |
| 8 | type Annealable interface { |
| 9 | Energy() float64 |
| 10 | DoMove() interface{} |
| 11 | UndoMove(interface{}) |
| 12 | Copy() Annealable |
| 13 | } |
| 14 | |
| 15 | func HillClimb(state Annealable, maxAge int) Annealable { |
| 16 | state = state.Copy() |
no outgoing calls
no test coverage detected
searching dependent graphs…