Exemple #1
0
 public BasicGraphColoringTestCase(double timeLimit, Graph g, ProperResult properResult) : base(timeLimit, null)
 {
     this.properResult = properResult;
     this.g            = g;
 }
Exemple #2
0
 public IncrementalGraphColoringTestCase(double timeLimit, Graph g, ProperResult properResult) : base(timeLimit, g, properResult)
 {
 }
Exemple #3
0
 public LargestBackDegreeGraphColoringTestCase(double timeLimit, Graph g, ProperResult properResult) : base(timeLimit, g, properResult)
 {
 }
Exemple #4
0
 public ColorDegreeOrderingGraphColoringTestCase(double timeLimit, Graph g, ProperResult properResult) : base(timeLimit, g, properResult)
 {
 }
Exemple #5
0
 public BFSGraphColoringTestCase(double timeLimit, Graph g, ProperResult properResult) : base(timeLimit, g, properResult)
 {
 }