jijmodeling.range.value

 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 . import value as _value  # type: ignore
11import sys
12
13for component in _value.__all__:  # type: ignore
14    setattr(sys.modules[__name__], component, getattr(_value, component))