JobShop plugins moved to corresponding folder

parent 5e2d0258
...@@ -8,7 +8,7 @@ import copy ...@@ -8,7 +8,7 @@ import copy
from datetime import datetime from datetime import datetime
from dream.plugins import plugin from dream.plugins import plugin
from dream.plugins import UpdateStationList from dream.plugins.JobShop import UpdateStationList
class ReadJSSkillsToStations(UpdateStationList.UpdateStationList): class ReadJSSkillsToStations(UpdateStationList.UpdateStationList):
""" Input preparation """ Input preparation
......
...@@ -7,7 +7,7 @@ import datetime ...@@ -7,7 +7,7 @@ import datetime
import copy import copy
from dream.plugins import plugin from dream.plugins import plugin
from dream.plugins import ReadJSWorkPlan from dream.plugins.JobShop import ReadJSWorkPlan
from dream.plugins.TimeSupport import TimeSupportMixin from dream.plugins.TimeSupport import TimeSupportMixin
class ReadJSWIP(ReadJSWorkPlan.ReadJSWorkPlan, TimeSupportMixin): class ReadJSWIP(ReadJSWorkPlan.ReadJSWorkPlan, TimeSupportMixin):
...@@ -74,4 +74,4 @@ class ReadJSWIP(ReadJSWorkPlan.ReadJSWorkPlan, TimeSupportMixin): ...@@ -74,4 +74,4 @@ class ReadJSWIP(ReadJSWorkPlan.ReadJSWorkPlan, TimeSupportMixin):
} }
return data return data
\ No newline at end of file
from copy import copy from copy import copy
from dream.plugins import plugin from dream.plugins import plugin
from dream.plugins import SplitRoute from dream.plugins.JobShop import SplitRoute
import datetime import datetime
# XXX HARDCODED # XXX HARDCODED
MACHINE_TYPE_SET = set(["Dream.MachineJobShop", "Dream.MouldAssembly"]) MACHINE_TYPE_SET = set(["Dream.MachineJobShop", "Dream.MouldAssembly"])
......
# ===========================================================================
# Copyright 2013 University of Limerick
#
# This file is part of DREAM.
#
# DREAM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DREAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment