igraph-help
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[igraph] : Reading File GraphML


From: patricia
Subject: [igraph] : Reading File GraphML
Date: Wed, 5 Nov 2014 06:32:06 +0300

I installed the libxml2 library and set the CodeBlocks as I did for the igraph and yet after running the following test code: 

#include <cstdio> 
#include "igraph.h" 

using namespace std; 

int main () 
{

     igraph_t g; 
     FILE * ifile; 

     ifile = fopen ("GraphML-hsa05010.xml", "r"); 
     igraph_read_graph_graphml (&g, ifile, 0); 
     fclose (ifile); 
     igraph_destroy (&g); 

   return 0; 


I get the same error message:  

"Error at foreign-graphml.c:1211 : GraphML support is disabled, unimplemented function call " 

"39512 [main] TesteGraphML 5372 cygwin_exception :: open_stackdumpfile : Dumping stack trace to TesteGraphML.exe.stackdump"  

Stack trace:
Frame     Function  Args
0022A7A8  61030562 (000000EC, 0000EA60, 000000A4, 0022A808)
0022A8C8  610DAEDD (00000000, 00000000, 00000004, 00000000)  

What should I do?


Thank you

reply via email to

[Prev in Thread] Current Thread [Next in Thread]