botorch/acquisition/input_constructors.py [829:843]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        objective=objective,
        posterior_transform=posterior_transform,
        **kwargs,
    )

    _bounds = torch.tensor(
        data=bounds,
        dtype=training_data.X.dtype,
        device=training_data.X.device,
    )

    _, current_value = optimize_objective(
        model=model,
        bounds=_bounds.t(),
        q=1,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



botorch/acquisition/input_constructors.py [910:924]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        objective=objective,
        posterior_transform=posterior_transform,
        **kwargs,
    )

    _bounds = torch.tensor(
        data=bounds,
        dtype=training_data.X.dtype,
        device=training_data.X.device,
    )

    _, current_value = optimize_objective(
        model=model,
        bounds=_bounds.t(),
        q=1,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



