1 Star 0 Fork 0

dexin/pmc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pmc.m 538 Bytes
一键复制 编辑 原始数据 按行查看 历史
Meng Liu 提交于 2017-05-13 18:28 . add matlab and python wrappers for pmc
function max_clique = pmc(A)
maxd = int32(full(max(sum(spones(A),1))));
[ei,ej] = find(tril(A,1));
ei = int32(ei);
ej = int32(ej);
loadlibrary('libpmc');
offset = 1;
outsize = maxd;
output = int32(zeros(maxd,1));
eiPtr = libpointer('int32Ptr',ei);
ejPtr = libpointer('int32Ptr',ej);
outputPtr = libpointer('int32Ptr',output);
clique_size = calllib('libpmc','max_clique',size(ei,1),eiPtr,ejPtr,offset,...
outsize,outputPtr);
output = get(outputPtr,'Value');
max_clique = output(1:clique_size);
unloadlibrary libpmc;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dustinksi/pmc.git
git@gitee.com:dustinksi/pmc.git
dustinksi
pmc
pmc
master

搜索帮助