git-svn-id: http://igraph.rubyforge.org/svn/trunk@64 71f48855-0bbf-4aa5-930d-4df415e86613

This commit is contained in:
alexgutteridge 2007-11-19 07:17:22 +00:00
parent 6d61339fa9
commit 0dee38a8e6
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
= 0.9 2007-11-19
* All igraph functions wrapped
* Documentation updated with examples
= 0.3.2 2007-09-03
* All 'structural property' functions now complete.

View File

@ -2,7 +2,7 @@
IGraph is a Ruby extension for interfacing with the C igraph library (http://cneurocvs.rmki.kfki.hu/igraph/). igraph is a library for creating and manipulating graphs with a particular emphasis on network analysis functions.
IGraph is currently in alpha status and although the basic graph creation and manipulation functions are implemented the API should be considered subject to change. The main documentation can be found at http://igraph.rubyforge.org/igraph/.
IGraph is currently in beta status and the API should be considered stable. The main documentation can be found at http://igraph.rubyforge.org/igraph/ though it is incomplete in places. you can also see the test suite for examples of how to use the various functions.
All bug reports, feature requests and patches are welcome. Please email alexg (at) kuicr.kyoto-u.ac.jp or use the rubyforge forums: http://rubyforge.org/forum/?group_id=3943

View File

@ -3,7 +3,7 @@ require 'hoe'
$LOAD_PATH.unshift("./ext")
class IGraph
VERSION = "0.3.3"
VERSION = "0.9.0"
end
begin

View File

@ -531,7 +531,7 @@ void Init_igraph(){
rb_define_method(cIGraph_community, "community_eb_get_merges", cIGraph_community_eb_get_merges, 1); /* in cIGraph_community.c */
rb_define_method(cIGraph_community, "community_fastgreedy", cIGraph_community_fastgreedy, 0); /* in cIGraph_community.c */
rb_define_const(cIGraph, "VERSION", rb_str_new2("0.3.3"));
rb_define_const(cIGraph, "VERSION", rb_str_new2("0.9.0"));
rb_define_const(cIGraph, "EDGEORDER_ID", INT2NUM(1));
rb_define_const(cIGraph, "EDGEORDER_FROM", INT2NUM(2));