reorganization: gnpy/{core => topology}/spectrum_assignment.py

Change-Id: Ic6194ce639dcb2f9419372febe0f2b58473edb38
This commit is contained in:
Jan Kundrát
2020-05-23 15:05:24 +02:00
parent baa9171315
commit 01c566a325
7 changed files with 8 additions and 8 deletions

View File

@@ -19,10 +19,10 @@ from gnpy.core.equipment import load_equipment
from gnpy.core.network import load_network, build_network
from gnpy.core.utils import lin2db, automatic_nch
from gnpy.core.elements import Roadm, Transceiver
from gnpy.core.spectrum_assignment import (build_oms_list, align_grids, nvalue_to_frequency,
bitmap_sum, Bitmap, spectrum_selection, pth_assign_spectrum)
from gnpy.core.exceptions import SpectrumError
from gnpy.topology.request import compute_path_dsjctn, find_reversed_path
from gnpy.topology.spectrum_assignment import (build_oms_list, align_grids, nvalue_to_frequency,
bitmap_sum, Bitmap, spectrum_selection, pth_assign_spectrum)
from examples.path_requests_run import requests_from_json, disjunctions_from_json, correct_disjn
TEST_DIR = Path(__file__).parent