Struct WorstPathCache

Struct Documentation

struct WorstPathCache

缓存某个线网当前最差源汇路径,供增量重路由快速比较。

Public Members

int worst_sink = -1

延迟最大的汇端节点编号。

double worst_delay = 0.0

最差路径按当前增量代价计算的总延迟。

std::vector<std::pair<int, int>> edges

最差路径上的规范化无向边。

std::vector<int> nodes

最差路径从源端到汇端的节点序列。

std::string desc

用于诊断日志的路径描述。