Last change
on this file since 13518 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
904 bytes
|
Line | |
---|
1 | // -------------------------------------------------------------------------------------------------------------------- |
---|
2 | // <copyright file="Enums.cs" company="Jamie Dixon Ltd"> |
---|
3 | // Jamie Dixon |
---|
4 | // </copyright> |
---|
5 | // <summary> |
---|
6 | // Defines the static Enums type. |
---|
7 | // </summary> |
---|
8 | // -------------------------------------------------------------------------------------------------------------------- |
---|
9 | |
---|
10 | namespace GraphVizWrapper |
---|
11 | { |
---|
12 | public static class Enums |
---|
13 | { |
---|
14 | public enum GraphReturnType |
---|
15 | { |
---|
16 | Pdf, |
---|
17 | Jpg, |
---|
18 | Png, |
---|
19 | Plain, |
---|
20 | PlainExt, |
---|
21 | Svg |
---|
22 | } |
---|
23 | |
---|
24 | public enum RenderingEngine |
---|
25 | { |
---|
26 | Dot, // First item in enum is default rendering engine (E[0]) |
---|
27 | Neato,
|
---|
28 | Twopi, |
---|
29 | Circo, |
---|
30 | Fdp,
|
---|
31 | Sfdp,
|
---|
32 | Patchwork,
|
---|
33 | Osage |
---|
34 | |
---|
35 | |
---|
36 | } |
---|
37 | } |
---|
38 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.