change header macro definition

This commit is contained in:
lperron@google.com
2011-05-11 16:06:53 +00:00
parent 9cb302fe99
commit 5583527eb8
2 changed files with 6 additions and 6 deletions

View File

@@ -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 <vector>
@@ -45,4 +45,4 @@ void MaximizeLinearAssignment(const vector<vector<double> >& cost,
} // namespace operations_research
#endif // ALGORITHMS_HUNGARIAN_H_
#endif // OR_TOOLS_ALGORITHMS_HUNGARIAN_H_

View File

@@ -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 <math.h>
#include <queue>
@@ -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_