dgleich / matlab-bgl

A graph library for Matlab based on the boost graph library
http://dgleich.github.com/matlab-bgl
110 stars 70 forks source link

kuratowski_subgraph fails on R2010b #7

Open dgleich opened 13 years ago

dgleich commented 13 years ago

The Kuratowski example fails when libmbgl is compiled with g++-4.1 and the matlab files are mexed with g++-4.3.

A = clique_graph([3,3]); % Generate K_3,3
K = kuratowski_subgraph(A);
isequal(A,K) % K_3,3 is a Kuratowski graph!