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
5cea27e3
Commit
5cea27e3
authored
Oct 30, 2013
by
Georgios Dagkakis
Committed by
Sebastien Robin
Nov 06, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed useless commented code
parent
36129741
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
22 deletions
+3
-22
dream/simulation/BatchDecomposition.py
dream/simulation/BatchDecomposition.py
+1
-2
dream/simulation/BatchSource.py
dream/simulation/BatchSource.py
+2
-20
No files found.
dream/simulation/BatchDecomposition.py
View file @
5cea27e3
...
...
@@ -189,5 +189,4 @@ class BatchDecomposition(CoreObject):
activeObject
.
predecessorIndex
=
i
maxTimeWaiting
=
timeWaiting
i
+=
1
# pick the predecessor waiting the more
return
self
.
canAccept
(
self
)
and
isRequested
# return true when the Queue is not fully occupied and a predecessor is requesting it
return
self
.
canAccept
(
self
)
and
isRequested
# return true when the Queue is not fully occupied and a predecessor is requesting it
dream/simulation/BatchSource.py
View file @
5cea27e3
...
...
@@ -17,9 +17,9 @@
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
'''
Created on 2
2
Oct 2013
Created on 2
9
Oct 2013
@author:
George
@author:
Ioannis
'''
'''
models the source object that generates the Batches Entities
...
...
@@ -33,24 +33,6 @@ from RandomNumberGenerator import RandomNumberGenerator
class
BatchSource
(
Source
):
def
__init__
(
self
,
id
,
name
,
distribution
=
'Fixed'
,
mean
=
1
,
item
=
Batch
,
batchNumberOfUnits
=
1
):
Source
.
__init__
(
self
,
id
=
id
,
name
=
name
,
distribution
=
distribution
,
mean
=
mean
,
item
=
item
)
# Process.__init__(self)
# # general properties
# self.id=id
# self.objName=name
# self.distType=distribution # label that sets the distribution type
# # properties used for statistics
# self.totalInterArrivalTime=0 # the total interarrival time
# self.numberOfArrivals=0 # the number of entities that were created
# # list containing objects that follow in the routing
# self.next=[] # list with the next objects in the flow
# self.nextIds=[] # list with the ids of the next objects in the flow
# self.previousIds=[] # list with the ids of the previous objects in the flow.
# # For the source it is always empty!
# self.type="Source" #String that shows the type of object
# self.rng=RandomNumberGenerator(self, self.distType)
# self.rng.avg=mean
# self.item=item
#
self
.
numberOfUnits
=
batchNumberOfUnits
...
...
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