Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f3b45fb6 authored by FELŠÖCI Marek's avatar FELŠÖCI Marek
Browse files

To imitate disabled compression, set epsilon to 1e-16

1e-18 was too high. It was making the creation of the H-Matrix running for too long.
parent 9367c320
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ int main(int argc, char **argv) { ...@@ -38,7 +38,7 @@ int main(int argc, char **argv) {
} else if(strncmp(compression, "high", 4) == 0) { } else if(strncmp(compression, "high", 4) == 0) {
epsilon = 1e-10; epsilon = 1e-10;
} else if(strncmp(compression, "disabled", 6) == 0) { } else if(strncmp(compression, "disabled", 6) == 0) {
epsilon = 1e-18; epsilon = 1e-16;
} }
} else { } else {
compression = "low"; compression = "low";
......
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