Suppresses all nonzeros which are \b much \b smaller \b than \a reference under the tolerance \a epsilon */
| 629 | |
| 630 | /** Suppresses all nonzeros which are \b much \b smaller \b than \a reference under the tolerance \a epsilon */ |
| 631 | void prune(const Scalar& reference, const RealScalar& epsilon = NumTraits<RealScalar>::dummy_precision()) { |
| 632 | prune(default_prunning_func(reference, epsilon)); |
| 633 | } |
| 634 | |
| 635 | /** Turns the matrix into compressed format, and suppresses all nonzeros which do not satisfy the predicate \a keep. |
| 636 | * The functor type \a KeepFunc must implement the following function: |
nothing calls this directly
no test coverage detected