SciProgCentre/kmath

Optimize determinant computation by checking features

CommanderTvis opened this issue · 0 comments

Introduce a class like DeterminantFeatureBase, which does some feature-based checks before calling the abstract expensive determinant finding. For example:

  1. UnitFeature -> 1
  2. ZeroFeature -> 0
  3. UFeature, LFeature -> product of the main diagonal elements
    ...