Skip to content

Commit

Permalink
remove math.inf from data model (experimental-design#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
jduerholt authored and jdridder committed Oct 4, 2024
1 parent 8356462 commit 7d0c353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bofire/data_models/features/continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ContinuousInput(NumericalInput):
type: Literal["ContinuousInput"] = "ContinuousInput"
order_id: ClassVar[int] = 1

bounds: Bounds
bounds: Tuple[float, float]
local_relative_bounds: Optional[
Tuple[Annotated[float, Field(gt=0)], Annotated[float, Field(gt=0)]]
] = None
Expand Down

0 comments on commit 7d0c353

Please sign in to comment.