File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ 0.1.2 (2021-03-10)
5+ ------------------
6+
7+ Few small bugfixes
8+
9+
4100.1.1 (2021-02-03)
511------------------
612
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def __repr__(self):
3030 return f"PowerMeasurement(dynamic={ self .dynamic } W, static={ self .static } W)"
3131
3232 def __float__ (self ) -> float :
33- return self .dynamic + self .static
33+ return float ( self .dynamic + self .static )
3434
3535 def __add__ (self , other ):
3636 return PowerMeasurement (self .dynamic + other .dynamic , self .static + other .static )
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " leafsim"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44description = " A simulator for Large Energy-Aware Fog computing environments."
55authors = [" Philipp Wiesner <wiesner@tu-berlin.de>" ]
66license = " MIT"
You can’t perform that action at this time.
0 commit comments