Cream.Solver.FindAll C# (CSharp) Method

FindAll() public method

Invokes the handler for each solution. This method is equivalent to {@link #FindAll(ISolutionHandler, long) FindFirst(handler, 0)}.
public FindAll ( ISolutionHandler handler ) : void
handler ISolutionHandler solution handler ///
return void
        public virtual void FindAll(ISolutionHandler handler)
        {
            lock (this)
            {
                FindAll(handler, 0);
            }
        }

Same methods

Solver::FindAll ( ISolutionHandler handler, long timeout ) : void