Simulates a disease outbreak using Standard ML of New Jersey.
This program was created for CS355: Principles of Programming Languages at Old Dominion University during Spring 2018.
You will need Standard ML of New Jersey and CMake:
sudo apt install smlnj cmake
The population generator is set up to build using CMake:
cd src/PopGen/
mkdir build && cd build
cmake .. && cmake --build .
./popGen
This will generate the file groups.data
which must be moved to the directory containing main.sml
:
mv groups.data ../../
From the src directory:
sml -s main.sml
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details.
- Our professor Jay Morris