Initial commit

This commit is contained in:
yichuan520030910320
2025-06-30 09:05:05 +00:00
commit 46f6cc100b
1231 changed files with 278432 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
#include <stdexcept>
namespace diskann
{
class NotImplementedException : public std::logic_error
{
public:
NotImplementedException() : std::logic_error("Function not yet implemented.")
{
}
};
} // namespace diskann