Skip to content
Snippets Groups Projects
Commit 2c5c491b authored by Kevin Höllring's avatar Kevin Höllring
Browse files

Add more precise comments

parent 36852e78
Branches
No related tags found
No related merge requests found
......@@ -24,13 +24,13 @@ GradientRootfinder::optimize(Function<Coordinate<double>, double>& func,
Coordinate<double>
ConjugateGradient::optimize(Function<Coordinate<double>, double>& func,
Coordinate<double>& start, double precision) const {
// TODO Problem 3
// TODO Problem 3 Task 2
return start;
}
Coordinate<double>
ConjugateGradient::CGstep(Function<Coordinate<double>, double>& func,
Coordinate<double>& start, double precision) const {
// TODO Problem 3
// TODO Problem 3 Task 1
return start;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment