Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds a GammaDistribution object for estimating gamma parameters #729

Merged
merged 23 commits into from Jul 25, 2016
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5293b50
Adds a GammaDistribution object for estimating gamma parameters
mentekid Jul 20, 2016
32fee02
Replaces trigamma(a) with polygamma(1, a) to check compatibility
mentekid Jul 20, 2016
2512ad5
Backports boost trigamma function
mentekid Jul 20, 2016
c4ab703
Removes dependency to boost polygamma
mentekid Jul 20, 2016
8f97d85
Test commit to see if backport worked
mentekid Jul 20, 2016
79fc031
More backporting fixes...
mentekid Jul 21, 2016
19e394b
Declares bernoulli_b2n, tangent_b2n before including bernoulli_detail…
mentekid Jul 21, 2016
4b15ce9
Proper forward declaration of boost::math functions
mentekid Jul 21, 2016
cda53ea
Forward declarations continued...
mentekid Jul 21, 2016
d6e29f3
Fixes typo in include directive
mentekid Jul 21, 2016
af8fcaf
Hardcodes bernoulli forward declarations
mentekid Jul 21, 2016
5b0bd16
Even more hard-coded forward declarations
mentekid Jul 21, 2016
bac611f
Fixes namespace braces
mentekid Jul 21, 2016
f875718
Hardcoding declaration for digits_base10
mentekid Jul 21, 2016
cd3f4a0
Adds '_BACKPORT' to all ifndef shields
mentekid Jul 21, 2016
5e52ac9
Backport fixes
mentekid Jul 21, 2016
2ec2846
Removes _BACKPORT, includes backported files before boost files
mentekid Jul 21, 2016
a46270e
Correctly removes _BACKPORT
mentekid Jul 21, 2016
495f3c6
Attempts to fix missing boost::math::policies::digits error
mentekid Jul 21, 2016
d0f0c89
Organizes boost backporting with core/boost_backport/boost_backport.hpp
mentekid Jul 21, 2016
ee69680
Makes boost_backport.hpp detect boost version
mentekid Jul 21, 2016
38fc485
Style fixes
mentekid Jul 21, 2016
29cadf0
Efficiency and documentation fixes for GammDistribution.
mentekid Jul 22, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion src/mlpack/core/boost_backport/polygamma.hpp
Expand Up @@ -12,7 +12,6 @@
#define _BOOST_POLYGAMMA_2013_07_30_HPP_

#include <boost/math/special_functions/factorials.hpp>
#include <boost/math/special_functions/detail/polygamma.hpp>
#include "trigamma.hpp"

namespace boost { namespace math {
Expand Down