Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Расширение интерфейса ICalculated #61

Open
arechesk opened this issue Apr 17, 2018 · 0 comments
Open

Расширение интерфейса ICalculated #61

arechesk opened this issue Apr 17, 2018 · 0 comments
Assignees
Labels
Вопрос!!! любые обсуждения Доработка новая задача

Comments

@arechesk
Copy link
Contributor

У нас основной алгоритм наверно должен быть многопроходным?
Можешь в интерфейс ICalculated добавить методы:

void postprocessing(); // постобработка после каждого прохода
bool isDone(); // возвращает true если все проходы завершены

основной алгоритм наверно должен ввыглядеть так:

calculated.createdBeginSolution();
Stopwatch timeForParsing = new Stopwatch();
         do{   for (int i = 0; i < filesImagesname.Count; i++)
            {
                if (filesImagesname[i].EndsWith("sharpImage.png")) continue;
                timeForParsing.Restart();
                Data.Image itemImage = new Data.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);
@arechesk arechesk added Доработка новая задача Вопрос!!! любые обсуждения labels Apr 17, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Вопрос!!! любые обсуждения Доработка новая задача
Projects
None yet
Development

No branches or pull requests

2 participants