Use constant seed for solver PRNG for deterministic results
This commit is contained in:
2
main.go
2
main.go
@@ -1218,7 +1218,7 @@ func handleSolve(db *sql.DB) http.HandlerFunc {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
rng := rand.New(rand.NewSource(rand.Int63()))
|
rng := rand.New(rand.NewSource(42))
|
||||||
solutions := solver.SolveFast(n, roomSize, pnMultiple, npCost, constraints, solver.DefaultParams, rng)
|
solutions := solver.SolveFast(n, roomSize, pnMultiple, npCost, constraints, solver.DefaultParams, rng)
|
||||||
|
|
||||||
if solutions == nil {
|
if solutions == nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user