Skip to content

Commit 3c763b6

Browse files
committed
glop: update include guards
1 parent 38b6fc3 commit 3c763b6

18 files changed

+54
-54
lines changed

ortools/glop/basis_representation.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_BASIS_REPRESENTATION_H_
15-
#define OR_TOOLS_GLOP_BASIS_REPRESENTATION_H_
14+
#ifndef ORTOOLS_GLOP_BASIS_REPRESENTATION_H_
15+
#define ORTOOLS_GLOP_BASIS_REPRESENTATION_H_
1616

1717
#include <string>
1818
#include <vector>
@@ -402,4 +402,4 @@ class BasisFactorization {
402402
} // namespace glop
403403
} // namespace operations_research
404404

405-
#endif // OR_TOOLS_GLOP_BASIS_REPRESENTATION_H_
405+
#endif // ORTOOLS_GLOP_BASIS_REPRESENTATION_H_

ortools/glop/dual_edge_norms.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_DUAL_EDGE_NORMS_H_
15-
#define OR_TOOLS_GLOP_DUAL_EDGE_NORMS_H_
14+
#ifndef ORTOOLS_GLOP_DUAL_EDGE_NORMS_H_
15+
#define ORTOOLS_GLOP_DUAL_EDGE_NORMS_H_
1616

1717
#include <string>
1818

@@ -149,4 +149,4 @@ class DualEdgeNorms {
149149
} // namespace glop
150150
} // namespace operations_research
151151

152-
#endif // OR_TOOLS_GLOP_DUAL_EDGE_NORMS_H_
152+
#endif // ORTOOLS_GLOP_DUAL_EDGE_NORMS_H_

ortools/glop/entering_variable.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_ENTERING_VARIABLE_H_
15-
#define OR_TOOLS_GLOP_ENTERING_VARIABLE_H_
14+
#ifndef ORTOOLS_GLOP_ENTERING_VARIABLE_H_
15+
#define ORTOOLS_GLOP_ENTERING_VARIABLE_H_
1616

1717
#include <cstdint>
1818
#include <string>
@@ -145,4 +145,4 @@ class EnteringVariable {
145145
} // namespace operations_research
146146

147147
#endif // SWIG
148-
#endif // OR_TOOLS_GLOP_ENTERING_VARIABLE_H_
148+
#endif // ORTOOLS_GLOP_ENTERING_VARIABLE_H_

ortools/glop/initial_basis.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_INITIAL_BASIS_H_
15-
#define OR_TOOLS_GLOP_INITIAL_BASIS_H_
14+
#ifndef ORTOOLS_GLOP_INITIAL_BASIS_H_
15+
#define ORTOOLS_GLOP_INITIAL_BASIS_H_
1616

1717
#include <vector>
1818

@@ -136,4 +136,4 @@ class InitialBasis {
136136
} // namespace glop
137137
} // namespace operations_research
138138

139-
#endif // OR_TOOLS_GLOP_INITIAL_BASIS_H_
139+
#endif // ORTOOLS_GLOP_INITIAL_BASIS_H_

ortools/glop/lp_solver.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_LP_SOLVER_H_
15-
#define OR_TOOLS_GLOP_LP_SOLVER_H_
14+
#ifndef ORTOOLS_GLOP_LP_SOLVER_H_
15+
#define ORTOOLS_GLOP_LP_SOLVER_H_
1616

1717
#include <memory>
1818
#include <string>
@@ -308,4 +308,4 @@ class LPSolver {
308308
} // namespace glop
309309
} // namespace operations_research
310310

311-
#endif // OR_TOOLS_GLOP_LP_SOLVER_H_
311+
#endif // ORTOOLS_GLOP_LP_SOLVER_H_

ortools/glop/lu_factorization.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_LU_FACTORIZATION_H_
15-
#define OR_TOOLS_GLOP_LU_FACTORIZATION_H_
14+
#ifndef ORTOOLS_GLOP_LU_FACTORIZATION_H_
15+
#define ORTOOLS_GLOP_LU_FACTORIZATION_H_
1616

1717
#include <string>
1818
#include <vector>
@@ -306,4 +306,4 @@ class LuFactorization {
306306

307307
} // namespace glop
308308
} // namespace operations_research
309-
#endif // OR_TOOLS_GLOP_LU_FACTORIZATION_H_
309+
#endif // ORTOOLS_GLOP_LU_FACTORIZATION_H_

ortools/glop/markowitz.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
// 29:1363-1381, January 2008.
7171
// - http://perso.ens-lyon.fr/~bucar/papers/kauc.pdf
7272

73-
#ifndef OR_TOOLS_GLOP_MARKOWITZ_H_
74-
#define OR_TOOLS_GLOP_MARKOWITZ_H_
73+
#ifndef ORTOOLS_GLOP_MARKOWITZ_H_
74+
#define ORTOOLS_GLOP_MARKOWITZ_H_
7575

7676
#include <cstdint>
7777
#include <queue>
@@ -488,4 +488,4 @@ class Markowitz {
488488
} // namespace glop
489489
} // namespace operations_research
490490

491-
#endif // OR_TOOLS_GLOP_MARKOWITZ_H_
491+
#endif // ORTOOLS_GLOP_MARKOWITZ_H_

ortools/glop/parameters_validation.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_PARAMETERS_VALIDATION_H_
15-
#define OR_TOOLS_GLOP_PARAMETERS_VALIDATION_H_
14+
#ifndef ORTOOLS_GLOP_PARAMETERS_VALIDATION_H_
15+
#define ORTOOLS_GLOP_PARAMETERS_VALIDATION_H_
1616

1717
#include <string>
1818

@@ -26,4 +26,4 @@ std::string ValidateParameters(const GlopParameters& params);
2626

2727
} // namespace operations_research::glop
2828

29-
#endif // OR_TOOLS_GLOP_PARAMETERS_VALIDATION_H_
29+
#endif // ORTOOLS_GLOP_PARAMETERS_VALIDATION_H_

ortools/glop/preprocessor.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
// E. D. Andersen, K. D. Andersen, "Presolving in linear programming.",
1818
// Mathematical Programming 71 (1995) 221-245.
1919

20-
#ifndef OR_TOOLS_GLOP_PREPROCESSOR_H_
21-
#define OR_TOOLS_GLOP_PREPROCESSOR_H_
20+
#ifndef ORTOOLS_GLOP_PREPROCESSOR_H_
21+
#define ORTOOLS_GLOP_PREPROCESSOR_H_
2222

2323
#include <deque>
2424
#include <memory>
@@ -1063,4 +1063,4 @@ class AddSlackVariablesPreprocessor final : public Preprocessor {
10631063
} // namespace glop
10641064
} // namespace operations_research
10651065

1066-
#endif // OR_TOOLS_GLOP_PREPROCESSOR_H_
1066+
#endif // ORTOOLS_GLOP_PREPROCESSOR_H_

ortools/glop/pricing.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
#ifndef OR_TOOLS_GLOP_PRICING_H_
15-
#define OR_TOOLS_GLOP_PRICING_H_
14+
#ifndef ORTOOLS_GLOP_PRICING_H_
15+
#define ORTOOLS_GLOP_PRICING_H_
1616

1717
#include <cmath>
1818
#include <random>
@@ -352,4 +352,4 @@ inline void DynamicMaximum<Index>::UpdateTopK(Index position,
352352
} // namespace glop
353353
} // namespace operations_research
354354

355-
#endif // OR_TOOLS_GLOP_PRICING_H_
355+
#endif // ORTOOLS_GLOP_PRICING_H_

0 commit comments

Comments
 (0)