Skip to content

Commit 55d41f6

Browse files
MaxenceGollierdpo
authored andcommitted
Update descriptions for BFGS and SR1 operators
Separated the description of BFGS and SR1. Added an explanation of why the inverse form of the SR1 is not implemented.
1 parent 246de5a commit 55d41f6

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • tutorials/introduction-to-linear-operators

tutorials/introduction-to-linear-operators/index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ norm(b - opAAT * x)
326326

327327
## Limited memory BFGS and SR1
328328

329-
Two other useful operators are the Limited-Memory BFGS in forward and inverse form.
329+
Another useful operator is the Limited-Memory BFGS in forward and inverse form.
330330

331331
```julia
332332
B = LBFGSOperator(20)
@@ -351,7 +351,10 @@ r
351351

352352

353353

354-
There is also a LSR1 operator that behaves similarly to these two.
354+
There is also a Limited-Memory SR1 operator for which only the forward form is implemented.
355+
Note that the SR1 operator can be indefinite, therefore its inverse does not necessarily exist.
356+
For this reason, the inverse form is not implemented for the SR1 operator.
357+
355358

356359
## Restriction, extension and slices
357360

0 commit comments

Comments
 (0)