| 7 | class LearningRate { |
| 8 | public: |
| 9 | LearningRate(const LearningRateConfig& conf) : conf_(conf) { |
| 10 | CHECK_GT(alpha(), 0); |
| 11 | CHECK_GE(beta(), 0); |
| 12 | } |
| 13 | ~LearningRate() { } |
| 14 | |
| 15 | V eval(V x = 0) const { |
nothing calls this directly
no outgoing calls
no test coverage detected