# SPDX-License-Identifier: MPL-2.0
# Copyright (C) 2020- The University of Tokyo
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from . import gp
from . import opt
from . import blm
from . import misc
from . import search
from . import predictor
from .predictor import BasePredictor
from ._variable import Variable
[docs]
def base_predictor(*args,**kwargs):
misc.deprecated_warning(old="physbo.base_predictor", new="physbo.BasePredictor")
return BasePredictor(*args,**kwargs)
[docs]
def variable(*args,**kwargs):
misc.deprecated_warning(old="physbo.variable", new="physbo.Variable")
return Variable(*args,**kwargs)
__version__ = "3.0-dev"