MaxvdKolk / gomm

`gomm`: a MatrixMarket parser in Go.
MIT License
1 stars 0 forks source link

Investigate if `SmallestNonzeroFloat64` is desired for comparison #9

Open MaxvdKolk opened 4 years ago

MaxvdKolk commented 4 years ago

Not sure if this is a suitable approach to avoiding explicit non-zero entries

if math.Abs(value) < math.SmallestNonzeroFloat64 {
    continue 
}