2025-01-23 20:26:43 +01:00
|
|
|
package solver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
2025-01-27 19:40:24 +01:00
|
|
|
func (solver *Solver) printSolutions() {
|
|
|
|
for solutionIndex, solution := range solver.solutions {
|
|
|
|
log.Printf("\nSolution #%d:", solutionIndex+1)
|
2025-01-23 23:11:30 +01:00
|
|
|
fmt.Println(solution)
|
2025-01-23 20:26:43 +01:00
|
|
|
}
|
|
|
|
}
|