Skip to content
Snippets Groups Projects
Commit ba0c0f83 authored by Laura Christine Kühle's avatar Laura Christine Kühle
Browse files

Improved description of troubled cell list.

parent d96200b8
No related branches found
No related tags found
No related merge requests found
......@@ -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 = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment