Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include "ortools/util/range_query_function.h"
#include <algorithm>
#include <functional>
#include <memory>
#include <utility>
#include <vector>
#include "ortools/base/logging.h"
#include "ortools/base/types.h"
#include "ortools/util/range_minimum_query.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. | |
Functions | |
RangeIntToIntFunction * | operations_research::MakeBareIntToIntFunction (std::function< int64_t(int64_t)> f) |
RangeIntToIntFunction * | operations_research::MakeCachedIntToIntFunction (const std::function< int64_t(int64_t)> &f, int64_t domain_start, int64_t domain_end) |
RangeMinMaxIndexFunction * | operations_research::MakeCachedRangeMinMaxIndexFunction (const std::function< int64_t(int64_t)> &f, int64_t domain_start, int64_t domain_end) |