Skip to content

Commit e9b3441

Browse files
author
Xia
committed
v1.0 commit
0 parents  commit e9b3441

39 files changed

Lines changed: 10273 additions & 0 deletions

.gitignore

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
__pycache__/
2+
*.py[cod]
3+
*$py.class
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
build/
11+
develop-eggs/
12+
dist/
13+
downloads/
14+
eggs/
15+
.eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
wheels/
22+
share/python-wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.nox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*.cover
48+
*.py,cover
49+
.hypothesis/
50+
.pytest_cache/
51+
cover/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
db.sqlite3
61+
db.sqlite3-journal
62+
63+
# Flask stuff:
64+
instance/
65+
.webassets-cache
66+
67+
# Scrapy stuff:
68+
.scrapy
69+
70+
# Sphinx documentation
71+
docs/_build/
72+
73+
# PyBuilder
74+
.pybuilder/
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
# For a library or package, you might want to ignore these files since the code is
86+
# intended to run in multiple environments; otherwise, check them in:
87+
# .python-version
88+
89+
# pipenv
90+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
92+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
93+
# install all needed dependencies.
94+
#Pipfile.lock
95+
96+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
97+
__pypackages__/
98+
99+
# Celery stuff
100+
celerybeat-schedule
101+
celerybeat.pid
102+
103+
# SageMath parsed files
104+
*.sage.py
105+
106+
# Environments
107+
.env
108+
.venv
109+
env/
110+
venv/
111+
ENV/
112+
env.bak/
113+
venv.bak/
114+
115+
# Spyder project settings
116+
.spyderproject
117+
.spyproject
118+
119+
# Rope project settings
120+
.ropeproject
121+
122+
# mkdocs documentation
123+
/site
124+
125+
# mypy
126+
.mypy_cache/
127+
.dmypy.json
128+
dmypy.json
129+
130+
# Pyre type checker
131+
.pyre/
132+
133+
# pytype static type analyzer
134+
.pytype/
135+
136+
# Cython debug symbols
137+
cython_debug/
138+
**/.DS_Store
139+
140+
# History files
141+
.Rhistory
142+
.Rapp.history
143+
144+
# Session Data files
145+
.RData
146+
147+
# User-specific files
148+
.Ruserdata
149+
150+
# Example code in package build process
151+
*-Ex.R
152+
153+
# Output files from R CMD build
154+
/*.tar.gz
155+
156+
# Output files from R CMD check
157+
/*.Rcheck/
158+
159+
# RStudio files
160+
.Rproj.user/
161+
162+
# produced vignettes
163+
vignettes/*.html
164+
vignettes/*.pdf
165+
166+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
167+
.httr-oauth
168+
169+
# knitr and R markdown default cache directories
170+
*_cache/
171+
/cache/
172+
173+
# Temporary files created by R markdown
174+
*.utf8.md
175+
*.knit.md
176+
177+
# R Environment Variables
178+
.Renviron
179+
1.14 KB
Binary file not shown.
77 Bytes
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
min_num_participants,min_num_takes,min_num_cancels,strict_fail,strict_success,method,min_reaction_time,info_hor_upper_bound,len_fixed_hor
2+
2,1,0,FALSE,FALSE,Info_Horizon,29,500,
3+
2,1,0,FALSE,FALSE,Fixed_Horizon,,,50
4+
2,1,0,FALSE,FALSE,Fixed_Horizon,,,100
5+
2,1,0,TRUE,FALSE,Fixed_Horizon,,,500
6+
2,1,0,TRUE,FALSE,Fixed_Horizon,,,1000
7+
3,1,0,FALSE,FALSE,Info_Horizon,29,500,
8+
3,1,0,FALSE,FALSE,Fixed_Horizon,,,50
9+
3,1,0,FALSE,FALSE,Fixed_Horizon,,,100
10+
3,1,0,TRUE,FALSE,Fixed_Horizon,,,500
11+
3,1,0,TRUE,FALSE,Fixed_Horizon,,,1000
887 Bytes
Binary file not shown.

Code_and_Data_Appendix.pdf

427 KB
Binary file not shown.

0 commit comments

Comments
 (0)