📄 hsrch_07.cc
字号:
// file: $isip/class/search/HierarchicalSearch/hsrch_07.cc// version: $Id: hsrch_07.cc,v 1.6 2002/05/27 04:48:53 alphonso Exp $//// isip include files//#include "HierarchicalSearch.h"// method: setNumLevels//// arguments:// long num_levels: (input) the number of levels to use//// return: logical error status//// set the number of search levels//boolean HierarchicalSearch::setNumLevels(long num_levels_a) { // check for out of range args // if (num_levels_a < 1) { return false; } // set the search levels // search_levels_d.setLength(num_levels_a, false); for (long i = 0; i < num_levels_a; i++) { search_levels_d(i).setLevelIndex(i); } // set the trace lists // trace_lists_d.setLength(num_levels_a, false); for (long i = 0; i < num_levels_a; i++) { trace_lists_d(i).setAllocationMode(DstrBase::USER); } // set the instance lists // instance_lists_d.setLength(num_levels_a, false); for (long i = 0; i < num_levels_a; i++) { instance_lists_d(i).setAllocationMode(DstrBase::USER); } // set the maximal trace score list // max_trace_scores_d.setLength(num_levels_a, false); max_instance_scores_d.setLength(num_levels_a, false); // exit gracefully // return true;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -