mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-11-13 01:53:31 +01:00
ZH: modify_clock takes float input
This commit is contained in:
parent
ff5b897042
commit
4c9e91489d
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ if __name__ == "__main__":
|
||||||
from os import path
|
from os import path
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
max_clock_offset = 100 if len(sys.argv) < 2 else int(sys.argv[1]) # ns
|
max_clock_offset = 100 if len(sys.argv) < 2 else float(sys.argv[1]) # ns
|
||||||
remake_clock_offsets = True
|
remake_clock_offsets = True
|
||||||
|
|
||||||
seed = 12345
|
seed = 12345
|
||||||
|
|
Loading…
Reference in a new issue