<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.python.simpy.user">
    <title>gmane.comp.python.simpy.user</title>
    <link>http://blog.gmane.org/gmane.comp.python.simpy.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1528"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1519"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1515"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1514"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1509"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1508"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1506"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1505"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1503"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1496"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1495"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1493"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1486"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1481"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1477"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1476"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1474"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1473"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1472"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.python.simpy.user/1467"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1528">
    <title>SimPy 3 Status Report</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1528</link>
    <description>&lt;pre&gt;Hello SimPy community,

here’s another SimPy 3 status update:

We were finally happy with Ontje’s resource refactoring branch [1| and merged
it into the default repository.

The resource API does not change very much (the most important aspects stayed
the same), but all resources now inherit from a single *BaseResource* and, as
with the *Environment*, events now play a more important role in the
implementation.

We also added two new resource types, so we now have:

- Resource: The good old resource. It implements the basis functionality from
  SimPy 2’s counterpart and has a much leaner implementation.

- PriorityResource: Processes requesting the resource are sorted by priority,
  which they can pass to each *request()*

- PreemptiveResource: Like PriorotiyResource, but processes can also preempt
  users of the resource if their priority is high enough.

- Container: The one you know from SimPy 2. Stores an abstract, homogeneous
  amount of something (e.g., a bottle of milk or a basket of apples). Pr&lt;/pre&gt;</description>
    <dc:creator>Stefan Scherfke</dc:creator>
    <dc:date>2013-05-19T18:21:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1519">
    <title>SimPy 3: zombie timeout events</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1519</link>
    <description>&lt;pre&gt;Here's an unexpected behavior in SimPy 3.  Sorry if it sounds a bit too 
much like a bad horror movie.

I have a large simulation (thousands of processes), and was measuring 
several things about it, including the event queue length 
(len(env._events)).  After the simulation ran for a while, the event 
queue length was growing much larger than I could account for just based 
on how many processes exist.  I then measured both the length of the 
event queue and the number of events on it that have callbacks. 
Interestingly, the number of events with callbacks never grows very 
high, but the number without callbacks - which I'll refer to as zombie 
events (since they won't do anything but die when step finally gets to 
them) - grows very high.  Further investigation shows that all the 
zombies are timeout events (type simpy.core.Timeout).

This simulation makes heavy use of interrupts.  That's probably the 
source of the zombies.  Unfortunately, it would be very hard to change 
the simulation design to use subs&lt;/pre&gt;</description>
    <dc:creator>Jonathan Leivent</dc:creator>
    <dc:date>2013-05-12T00:35:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1515">
    <title>update the priorities in waitQ and re-sort it</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1515</link>
    <description>&lt;pre&gt;Hi,

I'm trying to figure out how I can use SimPy for my problem. I need to
modify the priorities of entities in resource.waitQ each time one of the
servers start service to an entities. I read the documents on priorityQ and
at some point it is suggested to delete entity and re-introduce it to the
queue. However, I could not implement it to waitQ. I really appreciate any
help on updating and resorting entities in waitQ somehow.

Bests,
Mercedeh

&lt;/pre&gt;</description>
    <dc:creator>Mercedeh TariVerdi</dc:creator>
    <dc:date>2013-05-02T16:07:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1514">
    <title>getting determinism in Simpy is hard!</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1514</link>
    <description>&lt;pre&gt;I'm amazed at how hard it is to get a python program - a simpy 
simulation - to run deterministically.  I'd like to do this to help 
debug my simulation, and am having a very hard time.

I'm using simpy 3 with pseudo-random number generators from numpy, 
careful to initialize the numpy.random.seed to the same value very early 
in each run (prior to importing anything other than numpy).  I am not 
using set or dict, since these create non-deterministic iterators. 
Instead, I'm using collections.OrderedDict - even though the specific 
order doesn't matter to me when iterating over such dictionaries, that 
there is a specific deterministic order is sufficient.  I don't call 
sorted on things that contain unordered object references - since that 
can also create nondeterminism.  I have examined all uses of "&amp;lt;" and "&amp;gt;" 
to make sure none do comparisons on unordered object references.

I didn't see any obvious sources of non-determinism in the simpy 
sources, either.

The simulation iterates over tens of thousands&lt;/pre&gt;</description>
    <dc:creator>Jonathan Leivent</dc:creator>
    <dc:date>2013-05-03T02:26:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1509">
    <title>simpy 3 concurrency or parallelism?</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1509</link>
    <description>&lt;pre&gt;Hi everybody,

first of all, thank you for your work on Simpy, I just discovered it
and it really intrigued me!

I would like to use it to model agent-based systems, however, it's not
clear to me how big the models can be.

AFAIG simpy achieves concurrency through corutines. Is that correct?
How can I run a model on multiple processors?

Thanks and regards,

Mario

------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with &amp;lt;2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
&lt;/pre&gt;</description>
    <dc:creator>Mario Ceresa</dc:creator>
    <dc:date>2013-05-01T23:16:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1508">
    <title>SimPy 3 Status Update</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1508</link>
    <description>&lt;pre&gt;It’s been a while since our last status update and we have to admit that not
much happened in the default branch during that time.

The most visible changes are improved stacktraces for Python 2, better
"__repr__" implementations and that events now store their "value"---it can now
be accessed at any time via a property of that name.

In the background, we have been working on a new implementation of SimPy’s
resources and implemented a first draft for the monitoring capabilities.

Cheers,
Ontje &amp;amp; Stefan------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sour&lt;/pre&gt;</description>
    <dc:creator>Stefan Scherfke</dc:creator>
    <dc:date>2013-04-19T06:27:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1506">
    <title>Any approach or idea to simulate Batch Service Queue</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1506</link>
    <description>&lt;pre&gt;Hi All,

I am quite new to SimPy, but I love it so much. It's very powerful and easy to implement.

I am working on a shuttle service simulation problem. Several vehicles are available to transport passengers waiting at multiple hotels to several tour centers. I formulate each vehicle as a moving server providing batch service. The service time is travel time from hotel to tour center. After transporting passengers to tour center, the vehicle will return empty. Then the server (vehicle) becomes available again.

I have known three classes of congestion points, Resource, Level and Store. I just think that none of them are suitable to model a server with batch service.

I think there must be some way to tackle this. Or someone has encountered similar problems before. I am just expecting any idea on that.


Sorry if this is a duplicate mail.

Thanks,
Yanshuo
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of adv&lt;/pre&gt;</description>
    <dc:creator>Yanshuo Sun</dc:creator>
    <dc:date>2013-04-17T13:43:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1505">
    <title>Any approach or idea to simulate Batch Service Queue</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1505</link>
    <description>&lt;pre&gt;Dear Klaus Muller, Tony Vignaux and other friends,


I am quite new to SimPy, but I love it so much. It's very powerful and easy
to implement.

I am working on a shuttle service simulation problem. Several vehicles are
available to transport passengers waiting at multiple hotels to several
tour centers. I formulate each vehicle as a moving server providing batch
service. The service time is travel time from hotel to tour center. After
transporting passengers to tour center, the vehicle will return empty. Then
the server (vehicle) becomes available again.

I have known three classes of congestion points, Resource, Level and Store.
I just think that none of them are suitable to model a server with batch
service.

I think there must be some way to tackle this. Or someone has encountered
similar problems before. I am just expecting any idea on that.

Thanks a lot,
Yanshuo


&lt;/pre&gt;</description>
    <dc:creator>Yanshuo Sun</dc:creator>
    <dc:date>2013-04-17T13:27:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1503">
    <title>Any approach or idea to simulate Batch Service Queue</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1503</link>
    <description>&lt;pre&gt;Hi All,

I am quite new to SimPy, but I love it so much. It's very powerful and easy
to implement.

I am working on a shuttle service simulation problem. Several vehicles are
available to transport passengers waiting at multiple hotels to several
tour centers. I formulate each vehicle as a moving server providing batch
service. The service time is travel time from hotel to tour center. After
transporting passengers to tour center, the vehicle will return empty. Then
the server (vehicle) becomes available again.

I have known three classes of congestion points, Resource, Level and Store.
I just think that none of them are suitable to model a server with batch
service.

I think there must be some way to tackle this. Or someone has encountered
similar problems before. I am just expecting any idea on that.

Thanks,
Yanshuo

&lt;/pre&gt;</description>
    <dc:creator>Yanshuo Sun</dc:creator>
    <dc:date>2013-04-16T17:11:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1496">
    <title>simpy - earliest deadline first</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1496</link>
    <description>&lt;pre&gt;Hi,
I am learning simpy to simulate our processes in bank. So far, resources
about bank examples were very useful. However now i need a dynamic priority
system. In our bank, each customer segment has a service level agreement
(SLA) and prioritization is done with earliest deadline first method and i
want to simulate this. Can u give an example about dynamic prioritization
is it possible with current simpy module? If not, can u suggest me another
method (maybe another language). Since i am not an IT worker, i cant dive
deeply  in programming language so i need some examples to compare.
Thank you for your help
Sincerely
Baran Toppare
------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html________________________________&lt;/pre&gt;</description>
    <dc:creator>barantoppare&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-04-03T17:33:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1495">
    <title>simpy - earliest deadline first</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1495</link>
    <description>&lt;pre&gt;Hi,
I am learning simpy to simulate our processes in bank. So far, resources
about bank examples were very useful. However now i need a dynamic priority
system. In our bank, each customer segment has a service level agreement
(SLA) and prioritization is done with earliest deadline first method and i
want to simulate this. Can u give an example about dynamic prioritization
is it possible with current simpy module? If not, can u suggest me another
method (maybe another language). Since i am not an IT worker, i cant dive
deeply  in programming language so i need some examples to compare.
Thank you for your help
Sincerely
Baran Toppare
------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html________________________________&lt;/pre&gt;</description>
    <dc:creator>barantoppare&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-04-03T17:47:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1493">
    <title>Support of get filters in Simpy 3.0</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1493</link>
    <description>&lt;pre&gt;Hi,
Will there/is there support of get filters from stores in Simpy 3.0. There
does'nt seem to be any mention in the docs. I find them extremely useful in
Simpy 2.0

Regards,
Neill
------------------------------------------------------------------------------
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the  
endpoint security space. For insight on selecting the right partner to 
tackle endpoint security challenges, access the full report. 
http://p.sf.net/sfu/symantec-dev2dev_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Neill Byrne</dc:creator>
    <dc:date>2013-03-11T12:59:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1486">
    <title>when does 'get' on a 'Level' return 'None' inself.got?</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1486</link>
    <description>&lt;pre&gt;Hello,

I have written a rather complex model and I've noticed that in very
sporadic cases 'yield get,self,level,1' does not block the process on level
= Level(name=self.name+'.count',unitName='atom',sim=self.sim,capacity=sys.maxint)
and returns None in self.got instead of 1.

I'm not reneging so I would expect self.got to be always the required level
1.  In which cases should expect that I get None instead?

Best Regards,
Lorenzo
------------------------------------------------------------------------------
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the  
endpoint security space. For insight on selecting the right partner to 
tackle endpoint security challenges, access the full report. 
http://p.sf.net/sfu/symantec-dev2dev_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Lorenzo Di Gregorio</dc:creator>
    <dc:date>2013-03-09T01:41:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1481">
    <title>How to run multiple simulations with varyingparameters</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1481</link>
    <description>&lt;pre&gt;Hi Guys

I've just started using SimPy, and was facing a problem which I hope
someone could help me with. I have to run a number of simulations. In
general, the basic simulation model will remain the same but certain
parameters will change between different runs of the simulations. So if I
have to run the code with param1 taking say 3 values (a1,a2,a3), param2
taking 5 values (b1,b2,b3,b4,b5) and param3 taking 5 values
(c1,c2,c3,c4,c5), the simulation code needs to run 3*5*5 = 75 times. I have
implemented this naively, by making a list with all possible permutations
of these parameters list1 = [ [ a1 , b1 , c1] , [ a2, b1, c1] , [ a3, b1,
c1] ..... and so on...]. I have simply done the following:

for i in range (number_of_runs):
        update_parameters(i) # updates the parameters using list1
        initialize()
        activate_processes()
        simulate()

Could any one tell me how they run multiple simulations? This approach
doesn't seem good to me. Also, if I have to run these 75 simulations, then
c&lt;/pre&gt;</description>
    <dc:creator>shashank chaudhry</dc:creator>
    <dc:date>2013-03-06T19:48:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1477">
    <title>Latency between processes</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1477</link>
    <description>&lt;pre&gt;Here's a simple example showing how to model a propagation delay through a
cable.

This works when sending messages between processes.  For other cases, such
as a yield waiting for a process to end, something similar may be done.

In Python 3.3 the new  'yield from' mechanism could be used to add latency
when waiting for a process to end.

-Keith
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Keith Smith</dc:creator>
    <dc:date>2013-02-19T18:26:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1476">
    <title>Simpler Process Communication Example</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1476</link>
    <description>&lt;pre&gt;Here a simpler version of using pipes to buffer and send messages in
between processes.
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Keith Smith</dc:creator>
    <dc:date>2013-02-19T18:22:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1474">
    <title>Example of useful utility classes: NOTE Requiresnumpy and scipy</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1474</link>
    <description>&lt;pre&gt;The attached file has a set of MKS measurement classes which are very
useful in simulation and modeling.

One of the great advantages of simpy is that it can deal with events that
take place over time intervals of several orders of magnitude.  Included in
this file is a Time class based on a numpy.ndarray.  It can be used just
like a float in simpy where it defaults to seconds.  The constructor and
.u(units) method ease viewing and plotting of simpy time values in the
units of choice: {'fs', 'ps','ns','us','ms','s','min','hr','dy','wk','yr'}.

I always use the Time class in my simulations as it is much easier to
manipulate values, and print/display time in reasonable units for the
problem being modeled.

The file requires numpy and scipy.  It should be possible to create a
similar time class which is not dependent on numpy and scipy.

-Keith
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end Mar&lt;/pre&gt;</description>
    <dc:creator>Keith Smith</dc:creator>
    <dc:date>2013-02-07T21:15:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1473">
    <title>Preemptive Resource and Probe example</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1473</link>
    <description>&lt;pre&gt;The attached example shows a simulation with cars and police cars share a
gas station resource.  The police cars will preempt regular cars when they
need gas.

This example also shows a Probe class which can be used to capture selected
simulation state data when a car is preempted.

-Keith
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Keith Smith</dc:creator>
    <dc:date>2013-02-07T21:07:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1472">
    <title>Propagation and process interconnect example</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1472</link>
    <description>&lt;pre&gt;Here's an example that uses Stores for inter-process communication pipes.

It also shows how to build a broadcastPipe (one -to-many) and how to model
propagation delays

I hope you have fun running it

Keith
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Keith Smith</dc:creator>
    <dc:date>2013-02-07T20:40:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1467">
    <title>Python 2.6 support for SimPy 3?</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1467</link>
    <description>&lt;pre&gt;Do you want Python 2.6 support in SimPy 3? If not, the minimum required
Python versions would be 2.7 and 3.2.

Python 2.6 will be almost 4.5–5 years old when we release SimPy 3, so we
thinking about dropping support for it in SimPy 3. To us, this would make more
sense then trying to make SimPy 3 compatible with it and then dropping Python 
2.6 support in SimPy 3.1 or 3.2 …

What do you think?

Cheers,
Stefan------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan_______________________________________________
Simpy-users mailing list
Simpy-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
&lt;/pre&gt;</description>
    <dc:creator>Stefan Scherfke</dc:creator>
    <dc:date>2013-02-04T21:38:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.python.simpy.user/1461">
    <title>SimPy Events</title>
    <link>http://comments.gmane.org/gmane.comp.python.simpy.user/1461</link>
    <description>&lt;pre&gt;Hi all,

I've some doubts(listed below), regarding concurrent events in SimPy(2.3).

1. I've never observed *len(self.eventsFired) &amp;gt; 1* in my simulation. Does
it have anything to do with inter-event times being floats (eg: .09923sec)?

2. In which order do concurrent events occur? Do we have any control over
that?

3. If an event were to occur multiple times (concurrently), can we get that
information? Will self.eventsFired[] store the event in  duplicate?

Lastly, what are the changes to SimEvent mechanism in SimPy -3

It will be really helpful if you could give some hints/ partial answers.

Thanks,
Arun
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d_______________________________&lt;/pre&gt;</description>
    <dc:creator>Arun I B</dc:creator>
    <dc:date>2013-01-28T16:10:15</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.python.simpy.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.python.simpy.user</link>
  </textinput>
</rdf:RDF>
