https://github.com/stan-dev/stan
Raw File
Tip revision: b917217f8cab7f5f61db1397808b9018bcffa577 authored by Ben Goodrich on 07 May 2020, 05:39:10 UTC
revert backward incompatible change
Tip revision: b917217
.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