Age | Commit message (Collapse) | Author | Lines |
|
this also fixes a nasty off-by-one in the barcode loader
(now _load_energytrace):
wrong: interval_start_timestamp = data[:-1, 0] * 1e-6
correct: interval_start_timestamp = data[1:, 0] * 1e-6
|
|
|
|
|
|
|
|
|
|
The RNG has been introduced in NumPy 1.17, which is not yet available in
DebianStable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This way, PTA models can have sleep transitions without conflict
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This drastically increases performance
|
|
|
|
|
|
|
|
|
|
|