Commit Graph
10528 Commits
Author SHA1 Message Date
James Cline 94ebf46924 non-class type return values are non-modifiable, const qualifier is ignored (-Wignored-qualifiers)
ex:
int func() { return 0; }
main() { func() = 5; } // invalid
2012-01-17 19:54:00 +00:00
James Cline 9124085d13 We don't actually need a reference to the new child... 2012-01-17 19:41:44 +00:00
James Cline 86b32d5ca9 Fix all the things cppcheck didn't like.
* not initializing a value in a constructor
* ++iterator instead of iterator++
* container.empty() instead of container.size() == 0
* remove unused variables
* minimize scope of variables


There might've been something else but I've forgotten.
2012-01-13 21:24:57 +00:00
Ajinkya Kale a10e316f23 2012-01-11 23:48:04 +00:00
Ajinkya Kale 3dec62c089 tests for the new kernels 2012-01-11 23:47:37 +00:00
Ajinkya Kale 081184a436 fixed a few bugs 2012-01-11 23:47:14 +00:00
Ajinkya Kale 85d6b32d45 hyperbolic tangent kernel 2011-12-22 18:15:46 +00:00
Ajinkya Kale a0073d31f7 formatting changes 2011-12-22 18:10:55 +00:00
Bill March 0fcddd7187 fixed compilation error for boost 1.47 by adding <> to uniform_01 2011-12-22 15:42:40 +00:00
Ajinkya Kale dba8a28cb4 polynomial kernel 2011-12-22 13:19:20 +00:00
Ajinkya Kale ad450a04d8 laplacian kernel 2011-12-21 19:24:09 +00:00
Ajinkya Kale 0de8ebda6f exponential kernel 2011-12-21 19:17:38 +00:00
Ajinkya Kale 83ab860bfc kernel pca test file 2011-12-21 17:16:54 +00:00
Ryan Curtin 9f56844261 Fix two warnings and some style. 2011-12-21 04:43:33 +00:00
Ryan Curtin 5965238fb7 Don't run test cases that don't work because the code was never finished. 2011-12-21 04:27:42 +00:00
Sterling Lewis Peet d402af4561 update version and soname 2011-12-21 03:31:56 +00:00
Ajinkya Kale 777771f958 2011-12-20 17:36:03 +00:00
Ajinkya Kale 5f45320675 kernel pca works with linear Kernel now. 2011-12-20 17:07:13 +00:00
Ryan Curtin 77450a67af Fixes for old Boost.UnitTestFramework. 2011-12-20 16:31:12 +00:00
Ryan Curtin ec1bffac0f Smarter linking of MLPACK against Boost. 2011-12-20 16:28:12 +00:00
Ryan Curtin f66fc16c28 box() -> Box() 2011-12-20 16:27:50 +00:00
Ryan Curtin 5ea8a1e8d9 Fix >= Boost 1.47 issues. 2011-12-20 16:27:35 +00:00
Ryan Curtin d6df0bb448 box() -> Box(). 2011-12-20 16:27:13 +00:00
Ryan Curtin 58abed85d6 Search correctly for Boost.Random. It did not exist separately until 1.46. 2011-12-20 15:33:51 +00:00
Ryan Curtin d50ad44b25 Boost <= 1.41 did not have a separate random package. 2011-12-20 15:07:26 +00:00
Ryan Curtin d2493c4f89 Change name of box(). 2011-12-17 08:26:38 +00:00
Ryan Curtin abac81263e Fix comment. 2011-12-17 08:21:59 +00:00
Ryan Curtin da69803324 Fix braces. 2011-12-17 08:21:00 +00:00
Ryan Curtin 5df49a7ce8 Fix formatting for AugLagrangian and associated test functions. 2011-12-17 07:25:13 +00:00
Ryan Curtin 3c5eb815c6 Fix formatting for L-BFGS. 2011-12-17 07:22:40 +00:00
Ryan Curtin dfdbd241be Add CMake configuration. 2011-12-17 07:20:13 +00:00
Ryan Curtin 319a9d70b5 Move distributions to core/dists/. 2011-12-17 07:19:43 +00:00
Ryan Curtin 6df60dbeba Utilities for loading/saving HMMs; to be deprecated later. 2011-12-17 07:19:01 +00:00
Ryan Curtin d699ee2744 Fix use of uninitialized variables. 2011-12-17 07:07:30 +00:00
Ryan Curtin c93e7dac93 Implement operator|= correctly. 2011-12-17 07:07:12 +00:00
Ryan Curtin d5e96bfb23 We have a few more executables now. 2011-12-17 07:06:02 +00:00
Ryan Curtin 1886e3aaf3 Explicit namespace usage. 2011-12-17 06:40:10 +00:00
Ryan Curtin 43ab51c4e2 Add main executables for HMMs. 2011-12-17 06:39:15 +00:00
Ryan Curtin cbdbd270b3 Normalize vectors because Probabilities() doesn't do it anymore. 2011-12-17 06:37:23 +00:00
vlad321 b13c373d7d Formatted /tree 2011-12-16 23:12:35 +00:00
vlad321 a162510cc5 Formatted /util 2011-12-16 22:35:11 +00:00
vlad321 8573557c8d Formatted /math 2011-12-16 22:24:24 +00:00
vlad321 555c2bb426 The fix to the previous fix. 2011-12-16 22:16:01 +00:00
vlad321 de7f8b2ede Formatted /nearest_neighbor 2011-12-16 21:45:38 +00:00
vlad321 cad0500c91 Formatted /pca 2011-12-16 21:38:45 +00:00
vlad321 6c40b546b4 Formatting of /radical 2011-12-16 21:31:52 +00:00
vlad321 bd7de078e1 Formatted /mvu 2011-12-16 21:16:43 +00:00
vlad321 8da7699996 Formatting of /linear_regression 2011-12-16 20:29:44 +00:00
vlad321 22c572d983 Removed the extra print statements that I forgot in there. 2011-12-16 20:14:10 +00:00
vlad321 c7db50a996 The test cases for maximum periodic distance, as well as the code for both versions of the maximum periodic distance. 2011-12-16 20:11:14 +00:00