# Paper and LaTeX files
Paper/
*.tex
*.pdf
*.aux
*.log
*.out
*.toc
*.bbl
*.blg
*.fdb_latexmk
*.fls
*.synctex.gz
*.nav
*.snm
*.vrb

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.conda/
conda-meta/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# JAX compilation cache
jax_cache/

# Experiment outputs and logs
logs/
*.log
experiments/logs/
experiments/results/*.pkl
experiments/results/*.npz

# Temporary files
*.tmp
*.bak
*.backup
.DS_Store
Thumbs.db

# Large data files
*.h5
*.hdf5
*.mat

# Submission filters
# 1) Exclude all results except the single best.json artifact
results/**
!results/best.json
theoretical_verification/results/**
paper/iclr2026/results/**
unified_comparison_results.json

# 2) Exclude baseline algorithms and baseline-driven experiments
src/baselines/
src/experiments/ou_gmm_baselines/

# 3) Optional: exclude emoji-heavy utilities (tests/tuning/automation)
#    Uncomment if you do not intend to upload these folders
# tests/
# tuning/
# automation/

# Performance profiling
*.prof
*.pstats

# Coverage reports
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Personal notes and drafts
NOTES.md
TODO.md
DRAFT.md
scratch/
