https://github.com/stan-dev/stan
Revision e5da9eecb3c8b7fb01f3a8e57ce96b45d668bfaf authored by serban-nicusor-toptal on 24 January 2020, 17:09:15 UTC, committed by serban-nicusor-toptal on 24 January 2020, 17:09:15 UTC
1 parent c0ff255
Raw File
Tip revision: e5da9eecb3c8b7fb01f3a8e57ce96b45d668bfaf authored by serban-nicusor-toptal on 24 January 2020, 17:09:15 UTC
release/v2.22.0: updating version numbers.
Tip revision: e5da9ee
.gitignore
# /
/demo
/models
/test
/*.dSYM
/bin

# other binary
*.o
*.exe

# /doc/
/doc/api
/doc/*.pdf
/doc/*.txt

# temporary latex files
*.idx
*.ilg
*.ind
*.fdb_latexmk
*.fls

# temporary emacs files
*~
\#*#

# temporary vim files
*.swp

# depedencies files
*.d
*.hpp.d.*
.Rproj.user
stan.Rproj
.kdev4/
stan.kdev4
.Rapp.history

# tests: compiled models
/src/test/test-models/*.hpp
/src/test/test-models/*/*.hpp
/src/test/test-models/*/*/*.hpp
/src/test/test-models/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*/*/*.hpp
!/src/test/test-models/**/*.stan
!/src/test/test-models/**/.gitignore

# tests: generated agrad tests
/src/test/prob/*/*_generated_*_test.cpp

# For the Mac
*.DS_Store

# local make include
/make/local

*.gch

#clang-tidy fixes yaml
.clang-fixes.log

# Visual Studio Settings
.vscode/*

# clangd compiler database
compile_commands.json
back to top