Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add generators for fullerenes #14618

Closed
nvcleemp opened this issue May 20, 2013 · 44 comments
Closed

Add generators for fullerenes #14618

nvcleemp opened this issue May 20, 2013 · 44 comments

Comments

@nvcleemp
Copy link
Member

In the discussion of ticket #9136, it was mentioned that a generator for fullerenes would be a great addition. The fullerene generator fullgen by Gunnar Brinkmann can't be added due to licensing problems. Brinkmann's student Jan Goedgebeur implemented a new version using a different algorithm which is faster for the `small' cases: http://caagt.ugent.be/buckygen/ This program is available under the GPL 3, so I assume it can be integrated in Sage.

New spkg: http://users.ugent.be/~nvcleemp/buckygen-1.0.spkg

Apply:

Depends on #14532

CC: @sagetrac-azi @sagetrac-Slani @sagetrac-Stefan @nathanncohen

Component: packages: optional

Author: Nico Van Cleemput

Reviewer: Nathann Cohen

Merged: sage-5.11.beta0

Issue created by migration from https://trac.sagemath.org/ticket/14618

@nvcleemp
Copy link
Member Author

comment:1

I'm willing to work on this. I belong to the same research group and have some familiarity with the program and the used file formats, since I integrated it into CaGe (http://caagt.ugent.be/CaGe). I'm quite new to Sage, so I might however need some tips as to how to go about integrating it into Sage.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 20, 2013

comment:2

This would be a great addition to Sage ! this being said, a bad license does not necessarily mean that the software will never be used through Sage : it just means that it cannot be distributed with Sage. But we can use Nauty, which is not GPL-compatible, through the Nauty spkg :-)

Nathann

@sagetrac-azi
Copy link
Mannequin

sagetrac-azi mannequin commented May 20, 2013

comment:3

Indeed that would be nice!

Let us know if you have any questions about integrating this into Sage.

@nvcleemp
Copy link
Member Author

comment:4

Replying to @nathanncohen:

This would be a great addition to Sage ! this being said, a bad license does not necessarily mean that the software will never be used through Sage : it just means that it cannot be distributed with Sage. But we can use Nauty, which is not GPL-compatible, through the Nauty spkg :-)

Nathann

Yes, but for most cases buckygen outperforms fullgen, so it is the better choice. This is also the reason why it is now used in CaGe, except when the fullerenes need to be filtered based on the symmetry group or when they are needed in a specific order. These are all arguments which are mostly important for chemists, and even for them only in specific situations.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 20, 2013

comment:5

Yooooooo !

Yes, but for most cases buckygen outperforms fullgen, so it is the better choice.

Oh. Well, that's even better :-P

Nathann

@nvcleemp
Copy link
Member Author

comment:6

Replying to @sagetrac-azi:

Indeed that would be nice!

Let us know if you have any questions about integrating this into Sage.

Well, buckygen supports export in graph6, sparse6 and planar_code format. Using the first two is no problem, since they are already supported by Sage. However, this looses some information: buckygen generates plane graphs. This doesn't seem to be supported in Sage. Is that correct? Is it something that might be added in the near future?

Secondly, I had a look at the geng generator to get an idea how to integrate this kind of functionality. The Sage-part seems rather straight-forward. What I do have a question about, is how to add the buckygen program and make sure that it gets compiled, is available, ...

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 20, 2013

comment:7

Well, buckygen supports export in graph6, sparse6 and planar_code format. Using the first two is no problem, since they are already supported by Sage. However, this looses some information: buckygen generates plane graphs. This doesn't seem to be supported in Sage. Is that correct? Is it something that might be added in the near future?

"Planar graphs are not supported" ? What do you mean ? Do you mean that the embedding, or the positions are lost ? May it be what you need ?

http://www.sagemath.org/doc/reference/graphs/sage/graphs/generic_graph.html#sage.graphs.generic_graph.GenericGraph.get_embedding

I never used it myself, though it looks "useful" if you really, really work on planar graphs :-)

Secondly, I had a look at the geng generator to get an idea how to integrate this kind of functionality. The Sage-part seems rather straight-forward. What I do have a question about, is how to add the buckygen program and make sure that it gets compiled, is available, ...

You have to build a spkg.

http://www.sagemath.org/doc/developer/producing_spkgs.html

Nathann

@nvcleemp
Copy link
Member Author

comment:8

OK, thanks. That seems to answer my questions for now. I know what to do for the next couple of days. ;-)

@nvcleemp
Copy link
Member Author

comment:9

Replying to @nvcleemp:

OK, thanks. That seems to answer my questions for now. I know what to do for the next couple of days. ;-)

So, I think I have a first version ready. You will need the following spkg:

http://users.ugent.be/~nvcleemp/buckygen-1.0.spkg

I guess this can become a standard package, since it is GPL v3.

I looked at different spkg and copied what they did, so I hope that everything is in order. The same goes for the patch. Let me know what needs to be changed.

@nvcleemp
Copy link
Member Author

comment:11

Ow, just saw that I completely forgot the error handling: I still need to replace those passes. I'm sorry.

@nvcleemp
Copy link
Member Author

comment:13

OK, errors are now handled.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 26, 2013

comment:14

Helloooooooooooooooooooooooooooooooooooo !!!

NIiiiiiiice to have this in Sage ! I already know a couple of persons who will be interested in this feature :-)

Some comments:

  • I think that the method should be renamed "fullerenes". Or "fullerenes_buckygen" if you must, but really I think that it has to indicate what it does. And "fullerenes" is pretty nice in this attempt. Of course do cite buckygen wherever you can, it's not made to steal credit or anything, it's just that if I wanted to generate fullerenes I wouldn't know that this is what "buckygen" does.

  • In sage we usually use long names ... But it's true that isolated_pentagon_rule = True is really long :-/

  • Here is what happens when the spkg is not installed

    sage: list(graphs.buckygen(60))
    ---------------------------------------------------------------------------
    AssertionError                            Traceback (most recent call last)
    <ipython-input-2-b82c592bf78f> in <module>()
    ----> 1 list(graphs.buckygen(Integer(60)))
    
    /home/ncohen/.Sage/local/lib/python2.7/site-packages/sage/graphs/graph_generators.pyc in buckygen(self, order, ipr)
       1006         header = out.read(13)
       1007 
    -> 1008         assert header == '>>planar_code', 'Not a valid planar code header'
       1009 
       1010         c = out.read(1)
    
    AssertionError: Not a valid planar code header
    
   Could you add a message saying something like "To use this method you must install the buckygen spkg" ?
* Your doctests do not pass when buckygen is not installed, so you should flag them with `# optional - buckygen`. You can see how it is done in 

sage: graphs.nauty_geng?

* For LaTeX expression in Sphinx (Sage's documentation builder) you can't use `$`, and you should use ` instead. See `Graph.dominating_set?` for an example.
  You can rebuild the documentation (and check that it works) by running this 

sage -b && sage -docbuild reference/graphs html

* There is a special syntax for references in Sphinx. Take a look at `sage.graphs.comparability??`

* When `n < 20`, why don't we just yield an empty iterator ? Is there any reason to raise an exception in this case ?

* Whenever a new generator is added, it muuuuuuuusst appear in the module's doc, i.e. there : http://www.sagemath.org/doc/reference/graphs/sage/graphs/graph_generators.html. Can you add yours to the "Families of graphs" section ? All this appears at the top of graph_generators.py.

That's all I can think of right now `:-)`

And thank you very much again for adding this. That's good stuff !

Nathann

@nvcleemp
Copy link
Member Author

comment:15

OK, I'll change all of that. I used ipr, because also in the literature this is almost always referred to as IPR and hardly ever as Isolated Pentagon Rule.

The naming buckygen was only based on nauty_geng: it's certainly no problem to rename it to fullerenes. Btw, that's the way we do it in CaGe.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 26, 2013

comment:16

Well, if it is that standard then it is probably better to stick with "ipr". The alternative is really very long.

And I don't think that nauty_geng is such a good name either, but it has been like that since before I first used Sage, and I don't have a great idea of what it could be replaced with either ^^;

Nathann

@nvcleemp
Copy link
Member Author

comment:17

Btw, since buckygen is GPL, is there a reason why the spkg can't be included as a standard spkg?

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 26, 2013

comment:18

I believe that it has to be optional for a while... But then again it's pretty small. Could you ask on sage-devel ?

By the way, I forgot to add a couple of things to my earlier review : could you remove the patches/ directory from your spkg ? It's not needed unless it is nonempty :-)

Oh, and SPKG.txt file has the +x flag for no reason.

Nathann

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

comment:25

Ahahah. No you can't and you should not. I intended to write a reviewer's patch for this ticket but I had some problems with my copy of Sage, and it was delayed. You will have it by today !

Sorry for that !

Nathann

@nvcleemp
Copy link
Member Author

comment:26

hehe, no problem. I was just wondering if there was anything more I needed to do. But I guess I can just lay back and relax. Or maybe start marking the projects of my students. :-(

No hurry!

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

Attachment: trac_14618_buckygen.patch.gz

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

comment:27

(new version of the original patch without trailing whitespaces)

@nvcleemp
Copy link
Member Author

comment:28

hmm, I just noted a small typo on line 990: 20 should be removed there. Currently not at my own computer, so I can't fix it at the moment.

@nathanncohen

This comment has been minimized.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

Reviewer: Nathann Cohen

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

comment:29

Heeeeeeeeeeere it is !

This patch touches small things, but mostly simplifies code that could be simplified, and adds some doc. If you agree with it you can set this ticket to positive_review, otherwise let's talk about it :-)

Thank you again for this patch !

Nathann

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

comment:30

Oh, by the way... I replaced a "ValueError" (when the number of vertices is not even) by a StopIteration. Is that a problem ? Now, here is what you get :

sage: list(graphs.fullerenes(30))                                 
[Graph on 30 vertices, Graph on 30 vertices, Graph on 30 vertices]
sage: list(graphs.fullerenes(20))
[Graph on 20 vertices]
sage: list(graphs.fullerenes(10))
[]
sage: list(graphs.fullerenes(15))
[]

There's no problem to me if the method returns an empty list when no graph exists.... Tell me what you think !

Nathann

@nvcleemp
Copy link
Member Author

comment:31

Yes, I can agree with that. I think it can be argued whether asking for a fullerene with an odd number of vertices should give an error or just no graphs. I guess that this is the most friendly solution.

Maybe just a short note on the reason why I handled the header like I did. I was writing a bit more general code which could be used to handle all variants of planar code: >>planar_code<<, >>planar_code le<< or >>planarcode be<<.

I wanted to test whether buckygen would generate any of the other headers if the graphs became quite large. This way I noticed that buckygen will only generate planar code up to 254 vertices. Beyond that it just gives an error message. I will ask Jan (the author of buckygen) about this, but he's currently out of the office.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 27, 2013

comment:32

Maybe just a short note on the reason why I handled the header like I did. I was writing a bit more general code which could be used to handle all variants of planar code: >>planar_code<<, >>planar_code le<< or >>planarcode be<<.

I wanted to test whether buckygen would generate any of the other headers if the graphs became quite large. This way I noticed that buckygen will only generate planar code up to 254 vertices. Beyond that it just gives an error message. I will ask Jan (the author of buckygen) about this, but he's currently out of the office.

ARGGGGGGGGGG ! I totally forgot ! Of course I wanted to try graphs with 300 vertices, as obviously you can't store that on one byte... So, do we change that to 256 in the code ? Unless there is a trick to be found :-)

Nathann

@nvcleemp
Copy link
Member Author

comment:33

Attachment: trac_14618-rev.patch.gz

Well, planar code fixes this by using two bytes. That's why the header is needed to specify whether little endian or big endian is used. However, it appears that this is not implemented in buckygen. I'll ask the buckygen author what he thinks. I know he output larger graphs, but I don't know if he used a special patched version or so. I see the author tomorrow.

Nico

@nvcleemp
Copy link
Member Author

comment:34

As I expected, the output of graphs with more than 254 vertices is not supported. Instead one can output the dual, which has roughly half the number of vertices.

On the other hand, there are 1 985 250 572 fullerenes with 254 vertices and buckygen takes 2.5 days to generate those. Translating the graphs to Sage graphs will take even more time. Do we really want to support graphs with that many vertices or should we just hold the limit at 254 vertices? 254 vertices is already a bit too high for practical use in Sage.

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 29, 2013

comment:35

Ahahahah. No, I think that it would make sense indeed to change Sage's bound to 254 :-)

Nathann

@nvcleemp
Copy link
Member Author

Attachment: trac_14618_bound_254.patch.gz

@nvcleemp

This comment has been minimized.

@nvcleemp
Copy link
Member Author

comment:36

OK, this new patch sets the maximum number of vertices to 254. I think that was the last issue.

Nico

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented May 29, 2013

comment:37

Okayyyyyyy... Then I guess that it is good to go :-)

Nathann

@haraldschilly
Copy link
Member

comment:40

buckygen successfully landed on the server

@nathanncohen
Copy link
Mannequin

nathanncohen mannequin commented Jun 5, 2013

comment:41

Coool ! Thanks :-)

Nathann

@jdemeyer
Copy link

jdemeyer commented Jun 6, 2013

Merged: sage-5.11.beta0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants