diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-09 20:46:16 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-09 20:46:16 -0700 |
commit | fdc1c5642ecebcfbb88ce19ac8baab0b1b4ef24f (patch) | |
tree | 67102381547324921640e9c6e8ca68c5ecdeb4e5 /inc | |
parent | b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb (diff) | |
download | cmath-fdc1c5642ecebcfbb88ce19ac8baab0b1b4ef24f.tar.gz cmath-fdc1c5642ecebcfbb88ce19ac8baab0b1b4ef24f.zip |
add software manual updates for hw8
Diffstat (limited to 'inc')
-rw-r--r-- | inc/lizfcm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/lizfcm.h b/inc/lizfcm.h index 70ebd2f..1dcdb6b 100644 --- a/inc/lizfcm.h +++ b/inc/lizfcm.h @@ -93,5 +93,8 @@ extern double rand_from(double min, double max); extern Array_double *jacobi_solve(Matrix_double *m, Array_double *b, double tolerance, size_t max_iterations); +extern Array_double *gauss_siedel_solve(Matrix_double *m, Array_double *b, + double l2_convergence_tolerance, + size_t max_iterations); #endif // LIZFCM_H |