interface.go 124 B

123456789
  1. package genetic
  2. import (
  3. "gonum.org/v1/gonum/mat"
  4. )
  5. type PopulationVerifier interface {
  6. Verify(Population) *mat.Dense
  7. }