ortools.init.python.init
class
CppFlags(pybind11_builtins.pybind11_object):
Simple structure that holds useful C++ flags to setup from non-C++ languages.
class
CppBridge(pybind11_builtins.pybind11_object):
This class performs various C++ initialization.
It is meant to be used once at the start of a program.
def
init_logging(unknown):
init_logging(usage: str) -> None
Initialize the C++ logging layer.
This must be called once before any other library from OR-Tools are used.
def
shutdown_logging(unknown):
shutdown_logging() -> None
Shutdown the C++ logging layer.
This can be called to shutdown the C++ logging layer from OR-Tools. It should only be called once.
Deprecated: this is a no-op.
def
set_flags(unknown):
set_flags(flags: ortools.init.python.init.CppFlags) -> None
Sets all the C++ flags contained in the CppFlags structure.
class
OrToolsVersion(pybind11_builtins.pybind11_object):