ffx icon indicating copy to clipboard operation
ffx copied to clipboard

Fast Function Extraction

Results 12 ffx issues
Sort by recently updated
recently updated
newest added

In the code, there are a few occurrences of `scipy.isnan()` and `scipy.isinf()` (for example, around line 89 of file `bases.py`). They no longer exist, but they can be easily replaced...

Original code had several occurrences of scipy.isnan() and scipy.isinf(); they no longer exist, so the instructions were replaced with the corresponding numpy functions, np.isnan() and np.isinf().