// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. #pragma once #include #include #include #include namespace py = pybind11; namespace diskannpy { typedef uint32_t filterT; typedef uint32_t StaticIdType; typedef uint32_t DynamicIdType; template using NeighborsAndDistances = std::pair, py::array_t>; }; // namespace diskannpy