Cosmetic fixes
This commit is contained in:
@@ -3,16 +3,17 @@
|
||||
|
||||
#include <cmath>
|
||||
#include <cassert>
|
||||
#include <limits>
|
||||
|
||||
#include <algorithm>
|
||||
#include <limits>
|
||||
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <sstream>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
#include "Horus.h"
|
||||
|
||||
@@ -20,7 +21,7 @@ using namespace std;
|
||||
|
||||
|
||||
namespace {
|
||||
const double NEG_INF = -numeric_limits<double>::infinity();
|
||||
const double NEG_INF = -std::numeric_limits<double>::infinity();
|
||||
};
|
||||
|
||||
|
||||
@@ -42,7 +43,8 @@ template <typename K, typename V> bool contains (
|
||||
template <typename T> size_t indexOf (const vector<T>&, const T&);
|
||||
|
||||
template <class Operation>
|
||||
void apply_n_times (Params& v1, const Params& v2, unsigned repetitions, Operation);
|
||||
void apply_n_times (Params& v1, const Params& v2,
|
||||
unsigned repetitions, Operation);
|
||||
|
||||
template <typename T> void log (vector<T>&);
|
||||
|
||||
@@ -245,7 +247,7 @@ Util::logSum (double x, double y)
|
||||
inline unsigned
|
||||
Util::maxUnsigned (void)
|
||||
{
|
||||
return numeric_limits<unsigned>::max();
|
||||
return std::numeric_limits<unsigned>::max();
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user