package solver import ( "fmt" "log" ) func (solver *Solver) print_solutions() { for solution_index, solution := range solver.solutions { log.Printf("\nSolution #%d:", solution_index+1) fmt.Println(solution) } }