Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
f9504d56
Commit
f9504d56
authored
Aug 20, 2014
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MachineManagedJob and MachineJobShop updated
parent
97a2b87d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
136 deletions
+20
-136
dream/simulation/LineGenerationJSON.py
dream/simulation/LineGenerationJSON.py
+3
-136
dream/simulation/MachineJobShop.py
dream/simulation/MachineJobShop.py
+9
-0
dream/simulation/MachineManagedJob.py
dream/simulation/MachineManagedJob.py
+8
-0
No files found.
dream/simulation/LineGenerationJSON.py
View file @
f9504d56
This diff is collapsed.
Click to expand it.
dream/simulation/MachineJobShop.py
View file @
f9504d56
...
...
@@ -31,6 +31,15 @@ from Machine import Machine
# the MachineJobShop object
# ===========================================================================
class
MachineJobShop
(
Machine
):
# =======================================================================
# parses inputs if they are given in a dictionary
# =======================================================================
def
parseInputs
(
self
,
inputsDict
):
Machine
.
parseInputs
(
self
,
inputsDict
)
from
Globals
import
G
G
.
MachineJobShopList
.
append
(
self
)
# =======================================================================
# set all the objects in previous and next
# =======================================================================
...
...
dream/simulation/MachineManagedJob.py
View file @
f9504d56
...
...
@@ -39,6 +39,14 @@ from MachineJobShop import MachineJobShop
# ===========================================================================
class
MachineManagedJob
(
MachineJobShop
):
# =======================================================================
# parses inputs if they are given in a dictionary
# =======================================================================
def
parseInputs
(
self
,
inputsDict
):
MachineJobShop
.
parseInputs
(
self
,
inputsDict
)
from
Globals
import
G
G
.
MachineManagedJobList
.
append
(
self
)
# =======================================================================
# initialise the MachineManagedJob
# =======================================================================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment