Commit Graph
8 Commits
Author SHA1 Message Date
Alexander Leinoff efb64f2c7d Removes trailing whitespaces at end of lines
Unnecessary end of line whitespace is generally frowned upon. In addition some
editors remove end of line whitespace automatically, making diffs hard to read.
This commit removes all trailing witespaces. Using some sed magic in bash:

find . -name "*.*" -type f -print0 | xargs gsed -i 's/[ \t]*$//'
2016-04-19 12:10:01 -05:00
ryan c673742c54 Remove ToString() from everything.
It's more hassle than it's worth; hard to maintain, difficult to know what
exactly should be printed, and maybe wasn't all that useful to begin with.
Removing this should reduce the API necessary for new contributors.
2015-12-01 18:00:17 -05:00
HurricaneTong 7a9485bde3 implement Gradient()
as well as GradientForSquaredDistance()
2015-04-29 14:15:49 -04:00
Ryan Curtin c84d5ccfea Update ToString() for all kernels except the PSpectrumStringKernel. 2014-01-28 23:01:49 +00:00
birm 6a000a7fe6 Added ToString() to core/dists, core/kernels, and core/metrics
Added a test for the ToString() methods
2014-01-27 21:08:40 +00:00
Ryan Curtin 1ca66511c7 Minor updates for normalized kernels. 2013-10-04 16:31:04 +00:00
Ryan Curtin af91b322b0 Fix top-of-file comments. 2012-06-05 18:56:25 +00:00
Ryan Curtin 48e3f497ae Refactor and clean epanechnikov kernel. 2012-06-05 18:53:36 +00:00