/******************************************************************************* * Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited. * Proprietary and confidential. ******************************************************************************/ #include "Cost.h" namespace zilliz { namespace milvus { namespace engine { std::vector PickToMove(const TaskTable &task_table, const CacheMgr &cache_mgr, double limit) { std::vector indexes; return indexes; } std::vector PickToLoad(const TaskTable &task_table, uint64_t limit) { std::vector indexes; return indexes; } std::vector PickToExecute(const TaskTable &task_table, uint64_t limit) { std::vector indexes; return indexes; } } } }