File: naugstrings.h

package info (click to toggle)
nauty 2.6r7%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 15,252 kB
  • ctags: 3,948
  • sloc: ansic: 56,634; makefile: 968; sh: 123
file content (20 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* naugstrings.h : Write graph6 or sparse6 strings into array. */
/* Version 1.1, Jun 2015. */

#include "gtools.h"

#ifdef __cplusplus
extern "C" {
#endif

extern void gtog6string(graph*,char**,int,int);
extern void gtos6string(graph*,char**,int,int);
extern void gtod6string(graph*,char**,int,int);
extern void sgtos6string(sparsegraph*,char**);
extern void sgtog6string(sparsegraph*,char**);
extern void sgtod6string(sparsegraph*,char**);
extern void gtois6string(graph*,graph*,char**,int,int);

#ifdef __cplusplus
}
#endif