Browse Source

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

master
alexgutteridge 18 years ago
parent
commit
0dee38a8e6
4 changed files with 8 additions and 3 deletions
  1. +5
    -0
      History.txt
  2. +1
    -1
      README.txt
  3. +1
    -1
      Rakefile.rb
  4. +1
    -1
      ext/cIGraph.c

+ 5
- 0
History.txt 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.


+ 1
- 1
README.txt 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



+ 1
- 1
Rakefile.rb View File

@@ -3,7 +3,7 @@ require 'hoe'
$LOAD_PATH.unshift("./ext")

class IGraph
VERSION = "0.3.3"
VERSION = "0.9.0"
end

begin


+ 1
- 1
ext/cIGraph.c 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));


Loading…
Cancel
Save