From aaeae18a85dd56cf853f4936e104717bfac576a2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?FEL=C5=A0=C3=96CI=20Marek?= <marek.felsoci@inria.fr>
Date: Sun, 5 Nov 2023 18:01:36 +0100
Subject: [PATCH] Remove leaf radius option (not implemented)

---
 include/main.h | 3 ---
 src/main.c     | 1 -
 2 files changed, 4 deletions(-)

diff --git a/include/main.h b/include/main.h
index cb36859..6cc2b0e 100644
--- a/include/main.h
+++ b/include/main.h
@@ -45,9 +45,6 @@ extern ScalarType stype;
 /*! \brief  Wavelength (for oscillatory kernels). */
 extern double lambda;
 
-/*! \brief  Radius of the leaves in the trees. */
-extern double radiusLeaf;
-
 /*! \brief  Write a VTK file of the mesh. Enabled with option --write-mesh. */
 extern int writeMesh;
 
diff --git a/src/main.c b/src/main.c
index a8a11a2..de882d3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -19,7 +19,6 @@ int simplePrec = 0;
 int complexALGO = 1;
 ScalarType stype = DOUBLE_COMPLEX;
 double lambda;
-double radiusLeaf = 0.;
 int writeMesh = 0;
 int writeMeshUNV = 0;
 enum algo testedAlgo = _undefined;
-- 
GitLab