https://github.com/stan-dev/stan
Raw File
Tip revision: a74b1ba8754a990dbd8c182af10dfdb201ba6afc authored by Daniel Lee on 20 June 2014, 12:14:31 UTC
Merge pull request #703 from stan-dev/feature/issue-690-tag-v2.3.0
Tip revision: a74b1ba
.gitignore
# /
/demo
/models
/test
/*.dSYM
/bin

# other binary
*.o
*.exe

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

# temporary latex files
*~
*.idx
*.ilg
*.ind

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

# models:
/src/models/**
!/src/models/**.stan
!/src/models/**.R
!/src/models/**/makefile

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

# tests: generated agrad tests
/src/test/unit-distribution/*/*/*/*_generated_test.cpp

# For the Mac
*.DS_Store

# local make include
make/local
back to top