Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include <deque>
#include <list>
#include <map>
#include <ostream>
#include <set>
#include <utility>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
#include "absl/container/node_hash_map.h"
#include "absl/container/node_hash_set.h"
Go to the source code of this file.
Namespaces | |
namespace | |
namespace | std |
STL namespace. | |
Macros | |
#define | OUTPUT_TWO_ARG_CONTAINER(Sequence) |
#define | OUTPUT_THREE_ARG_CONTAINER(Sequence) |
#define | OUTPUT_FOUR_ARG_CONTAINER(Sequence) |
#define | OUTPUT_FIVE_ARG_CONTAINER(Sequence) |
Functions | |
template<class First , class Second > | |
std::ostream & | operator<< (std::ostream &out, const std::pair< First, Second > &p) |
template<class Iter > | |
void | google::PrintSequence (std::ostream &out, Iter begin, Iter end) |
#define OUTPUT_FIVE_ARG_CONTAINER | ( | Sequence | ) |
Definition at line 85 of file stl_logging.h.
#define OUTPUT_FOUR_ARG_CONTAINER | ( | Sequence | ) |
Definition at line 70 of file stl_logging.h.
#define OUTPUT_THREE_ARG_CONTAINER | ( | Sequence | ) |
Definition at line 57 of file stl_logging.h.
#define OUTPUT_TWO_ARG_CONTAINER | ( | Sequence | ) |
Definition at line 43 of file stl_logging.h.
|
inline |
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Forward declare these two, and define them after all the container streams operators so that we can recurse from pair -> container -> container -> pair properly.
Definition at line 99 of file stl_logging.h.