File:Schläfli graph.svg

From Vigyanwiki

Original file(SVG file, nominally 800 × 800 pixels, file size: 13 KB)

This file is from Wikimedia Commons and may be used by other projects. The description on its file description page there is shown below.

Summary

Description
English: Schläfli graph: a 9-sides symmetric embedding
Date
Source Own work
Author Claudio Rocchini

Many Thanks to nauty for autos.

Licensing

I, the copyright holder of this work, hereby publish it under the following licences:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported licence.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the licence, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible licence as the original.
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation Licence, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the licence is included in the section entitled GNU Free Documentation Licence.
You may select the licence of your choice.

Source

C++ source code of graph generation: the graphs is generated as local graph of en:Gosset graph (relative to vertex 0). See construction of Gosset graph. For symmetric embedding I use nauty software.

        const int NV = 27;
	int i,k;
	int cpt[8] = {-1,-1,-1,-1,-1,-1,3,3};
	int vg[56][8];	
	std::vector<edge> edges;
	int j = 0;
	do {
		for(i=0;i<8;++i) vg[j][i] = +cpt[i]; ++j;
		for(i=0;i<8;++i) vg[j][i] = -cpt[i]; ++j;
	}
	while( std::next_permutation(cpt,cpt+8) );
	int ren[56]; std::fill(ren,ren+56,-1);  int lren = 0;
	for(i=0;i<56-1;++i) for(j=i+1;j<56;++j) {
		int x = 0; for(k=0;k<8;++k) x += vg[i][k]*vg[j][k];
		if(x==8) {
			if(i==0) { ren[j]=lren++; }
			else if(ren[i]!=-1 && ren[j]!=-1)
				edges.push_back( edge(ren[i],ren[j]) );
		}
	}

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

30 July 2010

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current16:43, 30 July 2010Thumbnail for version as of 16:43, 30 July 2010800 × 800 (13 KB)wikimediacommons>Rocchini{{Information |Description={{en|1=Schläfli graph: a 9-sides symmetric embedding}} |Source={{own}} |Author=Claudio Rocchini |Date=2010-07-30 |Permission= |other_versions= }}

The following page uses this file: