Revision aa5a1890c52e006bf6865d75fe0838e07ff14883 authored by Yuling Yao on 13 November 2018, 22:40:26 UTC, committed by Aki Vehtari on 15 March 2019, 08:17:20 UTC
change variable names as lp__, log_p__, log_q__, param1, param2, ...
lp__ is an empty variable. log_p__ is the log density of posterior draws under true posterior. log_q__ is the log density under normal approximation.

change function name sample_lp into sample_lq. It returns log_q__.
1 parent 12598eb
Raw File
.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
back to top