Example #1
0
 public static void AppendGraph6ToFile(this Choosability.Graph g, string path)
 {
     using (var sw = new StreamWriter(path, append: true))
         sw.WriteLine(g.ToGraph6());
 }
Example #2
0
 public override string ToString()
 {
     return(string.Format("{0}, N = {1}, E = {2}, Beta = {3}, Q = {4}", G.ToGraph6(), N, E, Beta, Q));
 }