Removed the deprecated to_int and uses int() instead.
Fixed an issue where alias Duration = Int caused errors when trying to initialize with another Duration which is not necessary.
Constructor of SysNet had a path that wouldn't initialize the values because of a try catch block with no raises clause. This should fail fast if it cannot be constructed.
Looks like the tests are passing locally, the changes look good. Just cleaned up some commented out code.
Merging now. Thanks for your contribution! Really appreciate it.
to_int
and usesint()
instead.alias Duration = Int
caused errors when trying to initialize with another Duration which is not necessary.SysNet
had a path that wouldn't initialize the values because of a try catch block with no raises clause. This should fail fast if it cannot be constructed.