Skip to content

Commit

Permalink
skip ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ctkelley committed Nov 24, 2023
1 parent 8e8dd89 commit 1e52de8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
Binary file modified Publications_and_Presentations/MPArray.pdf
Binary file not shown.
15 changes: 11 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,17 @@ makedocs(
pages = Any[
"Home"=>"index.md",
"GMRES-IR" => Any["Half_1.md",],
"More than you want to know" => Any["Details/Termination.md", "Details/Interprecision_1.md",],
"MPArray Constructors" => Any["functions/MPArray.md","functions/MPGArray.md",],
"Factorizations"=>Any["functions/hlu!.md", "functions/mplu!.md", "functions/mplu.md", "functions/mpglu!.md", "functions/mpglu.md",],
"Solvers"=>Any["functions/mpgeslir.md", "functions/mpgmir.md",],
"More than you want to know" =>
Any["Details/Termination.md", "Details/Interprecision_1.md",],
"MPArray Constructors" =>
Any["functions/MPArray.md","functions/MPGArray.md",],
"Factorizations"=>
Any["functions/hlu!.md", "functions/mplu!.md", "functions/mplu.md",
"functions/mpglu!.md", "functions/mpglu.md",],
"Iteration Statistics"=>
Any["Details/Stats.md",],
"Solvers"=>
Any["functions/mpgeslir.md", "functions/mpgmir.md",],
"References" => ["References.md",],
],
; plugins=[bib]
Expand Down
6 changes: 6 additions & 0 deletions docs/src/Details/Stats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Harvesting Iteration Statistics

You can get some iteration statistics by using the
__reporting__ keyword argument to the solvers. The easiest way
to do this is with the backslash command. When you use this option you
get a data structure with the solution and the residual history.

0 comments on commit 1e52de8

Please sign in to comment.