Population item represent a single step in the evolution process. One can think of population item as a single species. Key stands for the actual data entity of the species, which is a string in current implementation. Key can be interpreted as species DNA. Value shows how close this species to the
| 24 | // **Note** In the current implementation species DNA length is suppose to be |
| 25 | // equal to the target length for algorithm to work. |
| 26 | type PopulationItem struct { |
| 27 | Key string |
| 28 | Value float64 |
| 29 | } |
| 30 | |
| 31 | // Conf stands for configurations set provided to GeneticString function. |
| 32 | type Conf struct { |
nothing calls this directly
no outgoing calls
no test coverage detected