Commit 5cea27e3 authored by Georgios Dagkakis's avatar Georgios Dagkakis Committed by Sebastien Robin

removed useless commented code

parent 36129741
......@@ -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
......@@ -17,9 +17,9 @@
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
'''
Created on 22 Oct 2013
Created on 29 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
......
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