From ba0c0f8358980b24a0c37599b51f277f6d4f4944 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?K=C3=BChle=2C=20Laura=20Christine=20=28lakue103=29?=
 <laura.kuehle@uni-duesseldorf.de>
Date: Tue, 14 Sep 2021 17:51:33 +0200
Subject: [PATCH] Improved description of troubled cell list.

---
 Troubled_Cell_Detector.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Troubled_Cell_Detector.py b/Troubled_Cell_Detector.py
index 39fbf32..7bd7a69 100644
--- a/Troubled_Cell_Detector.py
+++ b/Troubled_Cell_Detector.py
@@ -283,7 +283,7 @@ class ArtificialNeuralNetwork(TroubledCellDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         # Reset ghost cells to adjust for stencil length
@@ -352,7 +352,7 @@ class WaveletDetector(TroubledCellDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         multiwavelet_coeffs = self._calculate_wavelet_coeffs(projection[:, 1: -1])
@@ -392,7 +392,7 @@ class WaveletDetector(TroubledCellDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         return []
@@ -549,7 +549,7 @@ class Boxplot(WaveletDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         indexed_coeffs = [[multiwavelet_coeffs[0, i], i]for i in range(self._num_coarse_grid_cells)]
@@ -621,7 +621,7 @@ class Theoretical(WaveletDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         troubled_cells = []
-- 
GitLab