![]() |
Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
|
#include <stddef.h>#include <algorithm>#include <cmath>#include <cstdint>#include <limits>#include <stack>#include <type_traits>#include <utility>#include <vector>#include "absl/log/check.h"#include "absl/types/span.h"#include "ortools/util/bitset.h"#include "ortools/util/saturated_arithmetic.h"#include "ortools/util/vector_or_function.h"Go to the source code of this file.
Namespaces | |
| namespace | operations_research |
| In SWIG mode, we don't want anything besides these top-level includes. | |
Typedefs | |
| typedef int | operations_research::PathNodeIndex |
Functions | |
| template<typename CostType, typename CostFunction> | |
| HamiltonianPathSolver< CostType, CostFunction > | operations_research::MakeHamiltonianPathSolver (int num_nodes, CostFunction cost) |
| Utility function to simplify building a HamiltonianPathSolver from a functor. | |