Skip to content

Commit b4b2268

Browse files
committed
update include guards
1 parent 4793e1a commit b4b2268

File tree

571 files changed

+1713
-1713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

571 files changed

+1713
-1713
lines changed

examples/cpp/course_scheduling.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_EXAMPLES_COURSE_SCHEDULING_H_
15-
#define OR_TOOLS_EXAMPLES_COURSE_SCHEDULING_H_
14+
#ifndef ORTOOLS_EXAMPLES_COURSE_SCHEDULING_H_
15+
#define ORTOOLS_EXAMPLES_COURSE_SCHEDULING_H_
1616

1717
#include <utility>
1818
#include <vector>
@@ -83,4 +83,4 @@ class CourseSchedulingSolver {
8383

8484
} // namespace operations_research
8585

86-
#endif // OR_TOOLS_EXAMPLES_COURSE_SCHEDULING_H_
86+
#endif // ORTOOLS_EXAMPLES_COURSE_SCHEDULING_H_

examples/cpp/fap_model_printer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// Prints a model of Frequency Assignment Problem.
1515
// Format: http://www.inra.fr/mia/T/schiex/Doc/CELAR.shtml#synt
1616

17-
#ifndef OR_TOOLS_EXAMPLES_FAP_MODEL_PRINTER_H_
18-
#define OR_TOOLS_EXAMPLES_FAP_MODEL_PRINTER_H_
17+
#ifndef ORTOOLS_EXAMPLES_FAP_MODEL_PRINTER_H_
18+
#define ORTOOLS_EXAMPLES_FAP_MODEL_PRINTER_H_
1919

2020
#include <string>
2121
#include <vector>
@@ -51,4 +51,4 @@ class FapModelPrinter {
5151
};
5252

5353
} // namespace operations_research
54-
#endif // OR_TOOLS_EXAMPLES_FAP_MODEL_PRINTER_H_
54+
#endif // ORTOOLS_EXAMPLES_FAP_MODEL_PRINTER_H_

examples/cpp/fap_parser.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// Reading and parsing the data of Frequency Assignment Problem
1515
// Format: http://www.inra.fr/mia/T/schiex/Doc/CELAR.shtml#synt
1616

17-
#ifndef OR_TOOLS_EXAMPLES_FAP_PARSER_H_
18-
#define OR_TOOLS_EXAMPLES_FAP_PARSER_H_
17+
#ifndef ORTOOLS_EXAMPLES_FAP_PARSER_H_
18+
#define ORTOOLS_EXAMPLES_FAP_PARSER_H_
1919

2020
#include <string>
2121
#include <vector>
@@ -230,4 +230,4 @@ void ParseInstance(const std::string& data_directory, bool find_components,
230230
std::string* objective, std::vector<int>* frequencies,
231231
absl::flat_hash_map<int, FapComponent>* components);
232232
} // namespace operations_research
233-
#endif // OR_TOOLS_EXAMPLES_FAP_PARSER_H_
233+
#endif // ORTOOLS_EXAMPLES_FAP_PARSER_H_

examples/cpp/fap_utilities.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
// Utilities used by frequency_assignment_problem.cc.
1515

16-
#ifndef OR_TOOLS_EXAMPLES_FAP_UTILITIES_H_
17-
#define OR_TOOLS_EXAMPLES_FAP_UTILITIES_H_
16+
#ifndef ORTOOLS_EXAMPLES_FAP_UTILITIES_H_
17+
#define ORTOOLS_EXAMPLES_FAP_UTILITIES_H_
1818

1919
#include <cstdint>
2020
#include <vector>
@@ -66,4 +66,4 @@ void PrintResultsSoft(SolutionCollector* collector,
6666
absl::Span<const int> key_from_index);
6767

6868
} // namespace operations_research
69-
#endif // OR_TOOLS_EXAMPLES_FAP_UTILITIES_H_
69+
#endif // ORTOOLS_EXAMPLES_FAP_UTILITIES_H_

examples/cpp/parse_dimacs_assignment.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
// http://lpsolve.sourceforge.net/5.5/DIMACS_asn.htm
1616
//
1717

18-
#ifndef OR_TOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
19-
#define OR_TOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
18+
#ifndef ORTOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
19+
#define ORTOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
2020

2121
#include <algorithm>
2222
#include <cinttypes>
@@ -252,4 +252,4 @@ LinearSumAssignment<GraphType>* DimacsAssignmentParser<GraphType>::Parse(
252252

253253
} // namespace operations_research
254254

255-
#endif // OR_TOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
255+
#endif // ORTOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_

examples/cpp/print_dimacs_assignment.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// Function for outputting an assignment problem in DIMACS format:
1515
// http://lpsolve.sourceforge.net/5.5/DIMACS_asn.htm
1616
//
17-
#ifndef OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
18-
#define OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
17+
#ifndef ORTOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
18+
#define ORTOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
1919

2020
#include <cstdio>
2121
#include <string>
@@ -60,4 +60,4 @@ void PrintDimacsAssignmentProblem(
6060

6161
} // namespace operations_research
6262

63-
#endif // OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
63+
#endif // ORTOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_

ortools/algorithms/adjustable_k_ary_heap.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_ALGORITHMS_ADJUSTABLE_K_ARY_HEAP_H_
15-
#define OR_TOOLS_ALGORITHMS_ADJUSTABLE_K_ARY_HEAP_H_
14+
#ifndef ORTOOLS_ALGORITHMS_ADJUSTABLE_K_ARY_HEAP_H_
15+
#define ORTOOLS_ALGORITHMS_ADJUSTABLE_K_ARY_HEAP_H_
1616

1717
#include <algorithm>
1818
#include <limits>
@@ -309,4 +309,4 @@ class AdjustableKAryHeap {
309309
const Index kNonExistent = -1;
310310
};
311311

312-
#endif // OR_TOOLS_ALGORITHMS_ADJUSTABLE_K_ARY_HEAP_H_
312+
#endif // ORTOOLS_ALGORITHMS_ADJUSTABLE_K_ARY_HEAP_H_

ortools/algorithms/binary_indexed_tree.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_ALGORITHMS_BINARY_INDEXED_TREE_H_
15-
#define OR_TOOLS_ALGORITHMS_BINARY_INDEXED_TREE_H_
14+
#ifndef ORTOOLS_ALGORITHMS_BINARY_INDEXED_TREE_H_
15+
#define ORTOOLS_ALGORITHMS_BINARY_INDEXED_TREE_H_
1616

1717
#include <vector>
1818

@@ -68,4 +68,4 @@ class BinaryIndexedTree {
6868

6969
} // namespace operations_research
7070

71-
#endif // OR_TOOLS_ALGORITHMS_BINARY_INDEXED_TREE_H_
71+
#endif // ORTOOLS_ALGORITHMS_BINARY_INDEXED_TREE_H_

ortools/algorithms/binary_search.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_ALGORITHMS_BINARY_SEARCH_H_
15-
#define OR_TOOLS_ALGORITHMS_BINARY_SEARCH_H_
14+
#ifndef ORTOOLS_ALGORITHMS_BINARY_SEARCH_H_
15+
#define ORTOOLS_ALGORITHMS_BINARY_SEARCH_H_
1616

1717
#include <cmath>
1818
#include <cstdint>
@@ -344,4 +344,4 @@ std::pair<Point, Value> ConvexMinimum(bool is_to_the_right,
344344
}
345345
} // namespace operations_research
346346

347-
#endif // OR_TOOLS_ALGORITHMS_BINARY_SEARCH_H_
347+
#endif // ORTOOLS_ALGORITHMS_BINARY_SEARCH_H_

ortools/algorithms/dense_doubly_linked_list.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_ALGORITHMS_DENSE_DOUBLY_LINKED_LIST_H_
15-
#define OR_TOOLS_ALGORITHMS_DENSE_DOUBLY_LINKED_LIST_H_
14+
#ifndef ORTOOLS_ALGORITHMS_DENSE_DOUBLY_LINKED_LIST_H_
15+
#define ORTOOLS_ALGORITHMS_DENSE_DOUBLY_LINKED_LIST_H_
1616

1717
#include <vector>
1818

@@ -94,4 +94,4 @@ DenseDoublyLinkedList::DenseDoublyLinkedList(const T& elements)
9494

9595
} // namespace operations_research
9696

97-
#endif // OR_TOOLS_ALGORITHMS_DENSE_DOUBLY_LINKED_LIST_H_
97+
#endif // ORTOOLS_ALGORITHMS_DENSE_DOUBLY_LINKED_LIST_H_

0 commit comments

Comments
 (0)