https://github.com/stan-dev/stan
Raw File
Tip revision: b6d2d9a5132f7d99c491c6b78620b3f61ca84c4d authored by yiz on 26 February 2020, 22:53:26 UTC
update include & submodule
Tip revision: b6d2d9a
.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