Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 77cf5962 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Relace a bit the constraint on the norm test as it was failing for an error at 1e-16

parent 2605c92c
No related branches found
No related tags found
1 merge request!7Factorize the extended laplacian code
......@@ -91,7 +91,7 @@ static inline int
spm_norm_print_result( double norms, double normd, double result )
{
int rc = 0;
if ( (result >= 0.) && (result < 1.) ) {
if ( (result >= 0.) && (result < 10.) ) {
printf("SUCCESS !\n");
} else {
printf("FAILED !\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment