format file forcing the left alignment

This commit is contained in:
Corentin Le Molgat
2020-10-29 14:25:39 +01:00
parent 3b3b8562ea
commit e4caaf96bc
281 changed files with 13003 additions and 13031 deletions

View File

@@ -122,7 +122,7 @@ class LinearExpr {
*
* Warning: var is not owned.
*/
LinearExpr(const MPVariable *var); // NOLINT
LinearExpr(const MPVariable* var); // NOLINT
/**
* Returns 1-var.
@@ -133,14 +133,14 @@ class LinearExpr {
*/
static LinearExpr NotVar(LinearExpr var);
LinearExpr &operator+=(const LinearExpr &rhs);
LinearExpr &operator-=(const LinearExpr &rhs);
LinearExpr &operator*=(double rhs);
LinearExpr &operator/=(double rhs);
LinearExpr& operator+=(const LinearExpr& rhs);
LinearExpr& operator-=(const LinearExpr& rhs);
LinearExpr& operator*=(double rhs);
LinearExpr& operator/=(double rhs);
LinearExpr operator-() const;
double offset() const { return offset_; }
const absl::flat_hash_map<const MPVariable *, double> &terms() const {
const absl::flat_hash_map<const MPVariable*, double>& terms() const {
return terms_;
}
@@ -159,10 +159,10 @@ class LinearExpr {
private:
double offset_;
absl::flat_hash_map<const MPVariable *, double> terms_;
absl::flat_hash_map<const MPVariable*, double> terms_;
};
std::ostream &operator<<(std::ostream &stream, const LinearExpr &linear_expr);
std::ostream& operator<<(std::ostream& stream, const LinearExpr& linear_expr);
// NOTE(user): in the ops below, the non-"const LinearExpr&" are intentional.
// We need to create a new LinearExpr for the result, so we lose nothing by
@@ -171,8 +171,8 @@ std::ostream &operator<<(std::ostream &stream, const LinearExpr &linear_expr);
// evaluation of expressions such as
// a + b + c + d
// (see http://en.cppreference.com/w/cpp/language/operators).
LinearExpr operator+(LinearExpr lhs, const LinearExpr &rhs);
LinearExpr operator-(LinearExpr lhs, const LinearExpr &rhs);
LinearExpr operator+(LinearExpr lhs, const LinearExpr& rhs);
LinearExpr operator-(LinearExpr lhs, const LinearExpr& rhs);
LinearExpr operator*(LinearExpr lhs, double rhs);
LinearExpr operator/(LinearExpr lhs, double rhs);
LinearExpr operator*(double lhs, LinearExpr rhs);
@@ -199,11 +199,11 @@ class LinearRange {
lower_bound - offset <= linear_expr - offset <= upper_bound - offset.
\endcode
*/
LinearRange(double lower_bound, const LinearExpr &linear_expr,
LinearRange(double lower_bound, const LinearExpr& linear_expr,
double upper_bound);
double lower_bound() const { return lower_bound_; }
const LinearExpr &linear_expr() const { return linear_expr_; }
const LinearExpr& linear_expr() const { return linear_expr_; }
double upper_bound() const { return upper_bound_; }
private:
@@ -213,9 +213,9 @@ class LinearRange {
double upper_bound_;
};
LinearRange operator<=(const LinearExpr &lhs, const LinearExpr &rhs);
LinearRange operator==(const LinearExpr &lhs, const LinearExpr &rhs);
LinearRange operator>=(const LinearExpr &lhs, const LinearExpr &rhs);
LinearRange operator<=(const LinearExpr& lhs, const LinearExpr& rhs);
LinearRange operator==(const LinearExpr& lhs, const LinearExpr& rhs);
LinearRange operator>=(const LinearExpr& lhs, const LinearExpr& rhs);
// TODO(user,user): explore defining more overloads to support:
// solver.AddRowConstraint(0.0 <= x + y + z <= 1.0);