Ejemplo n.º 1
0
 /**
  * Removes a CSP listener from the solution strategy.
  *
  * @param listener the listener to remove
  */
 public void removeCspListener(ICspListener <VAR, VAL> listener)
 {
     listeners.Remove(listener);
 }
Ejemplo n.º 2
0
 /**
  * Adds a CSP listener to the solution strategy.
  *
  * @param listener a listener which follows the progress of the solution strategy
  *                 step-by-step.
  */
 public void addCspListener(ICspListener <VAR, VAL> listener)
 {
     listeners.Add(listener);
 }