Пример #1
0
 protected IFieldsGraph RandomGraph(int rowCount, int columnCount, double blackDencity)
 {
     options.RowCount           = rowCount;
     options.ColumnCount        = columnCount;
     options.DfsSearchDepth     = rowCount * columnCount;
     options.DfsMaxVistedNodes  = MAX_VISITED_NODES_COUNT;
     options.BfsMaxVisitedNodes = MAX_VISITED_NODES_COUNT;
     return(TestGraphs.Random(rowCount, columnCount, blackDencity));
 }