From f3b45fb6fcb1388ad4c7616d787d970878af60f5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?FEL=C5=A0=C3=96CI=20Marek?= <marek.felsoci@inria.fr>
Date: Mon, 6 Nov 2023 00:38:27 +0100
Subject: [PATCH] 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.
---
 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c
index be84883..637b908 100644
--- a/src/main.c
+++ b/src/main.c
@@ -38,7 +38,7 @@ int main(int argc, char **argv) {
     } else if(strncmp(compression, "high", 4) == 0) {
       epsilon = 1e-10;
     } else if(strncmp(compression, "disabled", 6) == 0) {
-      epsilon = 1e-18;
+      epsilon = 1e-16;
     }
   } else {
     compression = "low";
-- 
GitLab