⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtest_7_karsi.m

📁 都是测试程序
💻 M
字号:
function rval=rtest_7_karsi% Test the flow-graph that Karci identified as causing a problem with the% min-cut computation.  The min-cut value should always be equal to the% max-flow value.  G =  [0    46     0    46     0     0     0     0     0     0   461;    0     0    46     0    46     0     0     0     0     0   236;    0     0     0     0     0    46     0     0     0     0    23;    0     0     0     0    46     0    46     0     0     0   300;    0     0     0     0     0    46     0    46     0     0    46;    0     0     0     0     0     0     0     0    46     0    46;    0     0     0     0     0     0     0    46     0     0    23;    0     0     0     0     0     0     0     0    46     0    73;    0     0     0     0     0     0     0     0     0     0   183;    46    46    56    46    95    58    56    23     0     0     0;    0     0     0     0     0     0     0     0     0     0     0];G=sparse(G);try    [f c] = max_flow(G,10,11);    [i j v] = find(G);    I = c(i)>c(j); % form an indicator variable for edges crossing the cut    cv = sum(I.*v);    if cv~=f, error('Incorrect cut value'); end    rval=1;catch     lasterrend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -