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
Copy file name to clipboardExpand all lines: doc/catalog-of-examples.md
+19-6Lines changed: 19 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,12 +124,15 @@ Reconstruct missing network packets (or RAID disks) by using Reed-Solomon coding
124
124
125
125
Where to find it:
126
126
- The paper: [Verified Erasure Correction in Coq with MathComp and VST](https://www.cs.princeton.edu/~appel/papers/FECVerification.pdf), by Joshua M. Cohen, Qinshi Wang, and Andrew W. Appel, in *CAV'22: 34th International Conference on Computer Aided Verification,* August 2022.
-[Low-level proof: Verif_encode.v](https://github.com/verified-network-toolchain/Verified-FEC/blob/master/proofs/VST/Verif_encode.v) and other `Verif_*.v` in the same directory.
131
-
-[High-level spec: in ReedSolomon.v](https://github.com/verified-network-toolchain/Verified-FEC/blob/master/proofs/RS/ReedSolomon.v)
- The second paper: [Specifying and Verifying a Real-World Packet Error-Correction System](https://doi.org/10.1007/978-3-031-66064-1_4)[(author's copy)](https://www.cs.princeton.edu/~appel/papers/SpecPaper.pdf), by Joshua M. Cohen and Andrew W. Appel, in VSTTE'23, 15th International Conference on Verified Software: Theories, Tools, and Experiments, October 23, 2023. Springer LNCS vol 14095, July 2024.
128
+
-[C program for first paper: fec.c](https://github.com/verified-network-toolchain/Verified-FEC/blob/master/src/fecActuator/fec.c)
129
+
-[C program for second paper: fecActuator/*.c](https://github.com/verified-network-toolchain/Verified-FEC/tree/end-to-end/src/modified/mini_prod3/fecActuator)
130
+
-[Functional model 1: ReedSolomonList.v](https://github.com/verified-network-toolchain/Verified-FEC/blob/master/proofs/RS/ReedSolomonList.v)
-[Low-level proof 1: Verif_encode.v](https://github.com/verified-network-toolchain/Verified-FEC/blob/master/proofs/VST/Verif_encode.v) and other `Verif_*.v` in the same directory.
133
+
-[High-level spec 1: in ReedSolomon.v](https://github.com/verified-network-toolchain/Verified-FEC/blob/master/proofs/RS/ReedSolomon.v)
Numerical-method Jacobi iteration to solve a sparse linear system Ax=b, proved to converge within a bounded number of iterations to an accurate result in floating point, provided that the matrix A satisfies certain (testable) conditions.
191
+
192
+
- The paper: [Verified correctness, accuracy, and convergence of a stationary iterative linear solver: Jacobi method](https://www.cs.princeton.edu/~appel/papers/jacobi.pdf), by Mohit Tekriwal, Andrew W. Appel, Ariel E. Kellison, David Bindel, and Jean-Baptiste Jeannin, In *16th Conference on Intelligent Computer Mathematics*, pp. 206-221, September 2023.
- Low-level spec, High-level spec, proofs, etc.: See the [README](https://github.com/VeriNum/iterative_methods/blob/main/README.md) for an explanation of which files are which.
0 commit comments