#include <functional>
#include <numeric>
#include <vector>
#include "absl/strings/str_cat.h"
#include "ortools/base/int_type.h"
#include "ortools/base/int_type_indexed_vector.h"
#include "ortools/base/logging.h"
#include "ortools/util/time_limit.h"
Go to the source code of this file.
|
| | operations_research |
| | Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
|
| |
|
| void | operations_research::FindCliques (std::function< bool(int, int)> graph, int node_count, std::function< bool(const std::vector< int > &)> callback) |
| | Finds all maximal cliques, even of size 1, in the graph described by the graph callback. More...
|
| |
| void | operations_research::CoverArcsByCliques (std::function< bool(int, int)> graph, int node_count, std::function< bool(const std::vector< int > &)> callback) |
| | Covers the maximum number of arcs of the graph with cliques. More...
|
| |