aboutsummaryrefslogtreecommitdiff
path: root/bin/salis.py
AgeCommit message (Collapse)Author
2024-02-29Simultaneous Debug and Release builds.Paul Oliver
[#29] Makefile now generates both release and debug builds on every run. Salis.py can load the debug version on demand via a command line argument (--debug). Release version is loaded by default.
2024-02-29Added -a|--auto CLI argument.Paul Oliver
An user may now specify simulation's auto-save interval during initialization. This works for both new and loaded simulations.
2024-02-29Auto saved files are now gzipped.Paul Oliver
[#8] We compress all auto saved files via a subprocess call to 'gzip'. Saved files are reduced to around 25% of their original size.
2024-02-29Refactored all python modules to use name scrambling.Paul Oliver
[#4] Modules now utilize better naming conventions for differentiating between public and private members and methods. We no longer make use of properties.
2024-02-29Initial commit.Paul Oliver