forked from BDI-pathogens/OpenABM-Covid19
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
113 lines (95 loc) · 1.64 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Mac-related files
.DS_Store
# File associated with configure
config.log
config.status
configure
src/Makevars
autom4te.cache/
# File associated with compilation/linking
src/**/*.o
src/**/*.exe
src/*.csv
!src/adapter_covid19/data/*.csv
src/**/*.so
src/**/*.dll
examples/results/*.csv
cmake-build-debug/CMakeFiles/**
# Python testing files
__pycache__
.mypy_cache/
**/*.egg-info
*.pkl
# Eclipse-related files
.project
.cproject
.settings
.pydevproject
# Other editor-related files
*.swo
*.swp
.idea
**/.tags*
TAGS
tags
# temp copies
*~
# latex unwanted files
documentation/*copy*
documentation/*synctex*
documentation/*.log
documentation/*.aux
documentation/*.key
documentation/*.dvi
documentation/*.blg
documentation/*.bbl
documentation/*.out
documentation/*.toc
# R-related files
.Rhistory
.RData
.Rproj.user
# Generated by RStudio on Windows
src-i386/
src-x64/
# R package build files
/OpenABMCovid19/
/OpenABMCovid19.Rcheck/
/OpenABMCovid19_*.tar.gz
/OpenABMCovid19_*.tgz
/OpenABMCovid19_*.zip
/OpenABMCovid19.tmp/
# Roxygen2 generated documentation
/man/AgeGroupEnum.Rd
/man/Agent.Rd
/man/COVID19IBM.Rd
/man/Environment.Rd
/man/Model.Rd
/man/NETWORK_CONSTRUCTIONS.Rd
/man/Network.Rd
/man/Parameters.Rd
/man/SAFE_UPDATE_PARAMS.Rd
/man/Simulation.Rd
/man/VaccineSchedule.Rd
/man/VACCINE_STATUS.Rd
/man/VACCINE_TYPES.Rd
# performance related
performance/*.trace
performance/*.dtps
scratch/*
src_test/*
data_test/*
venv/*
# SWIG generated files
src/covid19.py
src/covid19_wrap.c
src/covid19_wrap_R.c
R/OpenABMCovid19.R
sandbox/*.csv
examples/*.png
examples/images/*
examples/*.csv
examples/.ipynb_checkpoints
sandbox/.ipynb_checkpoints
/Debug/
/.pytest_cache/