You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
У нас основной алгоритм наверно должен быть многопроходным?
Можешь в интерфейс ICalculated добавить методы:
voidpostprocessing();// постобработка после каждого проходаboolisDone();// возвращает true если все проходы завершены
основной алгоритм наверно должен ввыглядеть так:
calculated.createdBeginSolution();StopwatchtimeForParsing=newStopwatch();do{for(inti=0;i<filesImagesname.Count;i++){if(filesImagesname[i].EndsWith("sharpImage.png"))continue;timeForParsing.Restart();Data.ImageitemImage=newData.Image(filesImagesname[i]);calculated.clarifySolution(itemImage);timeForParsing.Stop();Console.WriteLine(string.Format("processing of the {0} has finished\n\telapsed time: {1} milliseconds",filesImagesname[i],timeForParsing.Elapsed.Milliseconds));}calculated.postprocessing();}while(!calculated.isDone())calculated.eliminationPoints(delta);
The text was updated successfully, but these errors were encountered:
У нас основной алгоритм наверно должен быть многопроходным?
Можешь в интерфейс ICalculated добавить методы:
основной алгоритм наверно должен ввыглядеть так:
The text was updated successfully, but these errors were encountered: