Example #1
0
 /// <summary>
 /// Train on a set of patterns and call back when done.
 /// </summary>
 /// <param name="set">The set of patterns to train on.</param>
 /// <param name="iterations">The number of iterations to train.</param>
 /// <returns></returns>
 public void TrainAsync(SolutionSet set, int iterations)
 {
     solver.TrainAsync(set.Patterns, iterations);
 }