From 5583527eb881de972e208d27fbbda1bcab9d941b Mon Sep 17 00:00:00 2001 From: "lperron@google.com" Date: Wed, 11 May 2011 16:06:53 +0000 Subject: [PATCH] change header macro definition --- algorithms/hungarian.h | 6 +++--- algorithms/knapsack_solver.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/algorithms/hungarian.h b/algorithms/hungarian.h index 1c1c8b4af0..881759753a 100644 --- a/algorithms/hungarian.h +++ b/algorithms/hungarian.h @@ -27,8 +27,8 @@ // which in turn is based on // http://www.public.iastate.edu/~ddoty/HungarianAlgorithm.html. -#ifndef ALGORITHMS_HUNGARIAN_H_ -#define ALGORITHMS_HUNGARIAN_H_ +#ifndef OR_TOOLS_ALGORITHMS_HUNGARIAN_H_ +#define OR_TOOLS_ALGORITHMS_HUNGARIAN_H_ #include "base/util.h" #include @@ -45,4 +45,4 @@ void MaximizeLinearAssignment(const vector >& cost, } // namespace operations_research -#endif // ALGORITHMS_HUNGARIAN_H_ +#endif // OR_TOOLS_ALGORITHMS_HUNGARIAN_H_ diff --git a/algorithms/knapsack_solver.h b/algorithms/knapsack_solver.h index 6340bdeb65..f4e61ee497 100644 --- a/algorithms/knapsack_solver.h +++ b/algorithms/knapsack_solver.h @@ -54,8 +54,8 @@ // int64 profit = solver.Solve(); -#ifndef ALGORITHMS_KNAPSACK_SOLVER_H_ -#define ALGORITHMS_KNAPSACK_SOLVER_H_ +#ifndef OR_TOOLS_ALGORITHMS_KNAPSACK_SOLVER_H_ +#define OR_TOOLS_ALGORITHMS_KNAPSACK_SOLVER_H_ #include #include @@ -567,4 +567,4 @@ class KnapsackGenericSolver : public BaseKnapsackSolver { #endif // SWIG } // namespace operations_research -#endif // ALGORITHMS_KNAPSACK_SOLVER_H_ +#endif // OR_TOOLS_ALGORITHMS_KNAPSACK_SOLVER_H_