Created
October 9, 2019 15:59
-
-
Save thunderInfy/5cb5e0af08558db0ef417be63e2ecbbc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#A class holding the properties of a location together | |
class location: | |
def __init__(self, req, ret): | |
self.α = req #value of lambda for requests | |
self.β = ret #value of lambda for returns | |
self.poissonα = poisson_(self.α) | |
self.poissonβ = poisson_(self.β) | |
#Location initialisation | |
A = location(3,3) | |
B = location(4,2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment