1# `jijmodeling.jijmodeling` is a module corresponding to the shared library
2# created by PyO3,
3# and `jijmodeling.jijmodeling.range` is its submodule defined dynamically
4# while the initialization of the shared library.
5#
6# This file defines a new sub-module `jijmodeling.range`,
7# and exposes all the components in `jijmodeling.jijmodeling.range`
8#
9
10from .._jijmodeling import range as _range # type: ignore
11import sys
12
13for component in _range.__all__:
14 setattr(sys.modules[__name__], component, getattr(_range, component))