-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* implement dikin walk * implement john walk * implement vaidya walk * include random walk * add c++ wrappers for the ellipsoid random walks * update R interface for sampling and parameterized ellipsoid walks * update Rd files and roxygen comments * implement PR comments * use constructors in dikin,vaidya and john walks * improve implementations * improve computation of inner ball for H-polytopes * improve inner ball computation and improve tests * update termination criterions in rounding methods * update Rd file of Birkhoff R generator * improve univariate psrf implemetations * fix c++ tests * update parameters in rounding and minor improvements * fix gcc tests and improve birkhoff generator Rd file * fix c++ tests * update citations
- Loading branch information
1 parent
375fa1f
commit 0fad1ce
Showing
19 changed files
with
1,005 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
1) This folder contains the C++ implementations -with several modifications- of the Dikin walk, | ||
the Vaidya walk and the John walk from https://github.com/rzrsk/vaidya-walk by Raaz Dwivedi. | ||
|
||
2) The implemented random walks are presented in the paper of | ||
Y. Chen, R. Dwivedi, M. J. Wainwright and B. Yu, | ||
"Fast MCMC Sampling Algorithms on Polytopes", | ||
Journal of Machine Learning Research, 2018. |
Oops, something went wrong.