https://github.com/stan-dev/stan
Raw File
Tip revision: 0928d1f015196fd1875bb7cc4e4dc8040906197a authored by Daniel Lee on 14 February 2014, 02:25:39 UTC
Merge pull request #560 from stan-dev/release/v2.2.0
Tip revision: 0928d1f
.gitignore
# /
/demo
/models
/test
/*.dSYM
/bin

# precompiled model header
/src/stan/model/model_header.hpp.*ch

# other binary
*.o
*.exe

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

# temporary 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

#auto generated by RStan make
rstan/rstan/R/git_head.R
rstan/rstan/inst/include/stanlib
rstan/rstan/inst/include/stansrc
back to top