Skip to content

Commit 2e8b173

Browse files
authored
raise_validation_error=False (#546)
1 parent 66b5568 commit 2e8b173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/bofire/strategies/test_doe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def calc_volume_content(A, B, T, W, W_T):
462462
ipopt_options={"maxiter": 500},
463463
)
464464
strategy = DoEStrategy(data_model=data_model)
465-
doe = strategy.ask(candidate_count=n_experiments)
465+
doe = strategy.ask(candidate_count=n_experiments, raise_validation_error=False)
466466
doe["SC"] = calc_solid_content(*[doe[col] for col in ["A", "B", "T", "W", "W_T"]])
467467
doe["VC"] = calc_volume_content(*[doe[col] for col in ["A", "B", "T", "W", "W_T"]])
468468
doe["T_calc"] = 0.0182 - 0.03704 * doe["VC"]

0 commit comments

Comments
 (0)