Skip to content

Instantly share code, notes, and snippets.

@Benzidrine
Created August 16, 2019 03:49
Show Gist options
  • Save Benzidrine/dd006c2ad00cbecad6ea11e10170adfa to your computer and use it in GitHub Desktop.
Save Benzidrine/dd006c2ad00cbecad6ea11e10170adfa to your computer and use it in GitHub Desktop.
public double GetFitness(List<Tuple<Single,Single>> LineValues)
{
double Fitness = 0;
foreach (var item in LineValues)
{
Fitness -= Math.Abs((item.Item2 - ComputationManager.Compute(genes,item.Item1)));
}
return Fitness;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment