Initial commit

This commit is contained in:
2022-06-22 13:15:43 +02:00
commit 0b318ac0e4
10 changed files with 209 additions and 0 deletions

9
problem.ex Normal file
View File

@@ -0,0 +1,9 @@
defmodule Problem do
alias Types.Chromosome
@callback genotype :: Chromosome.t
@callback fitness_function(Chromosome.t) :: number()
@callback terminate?(Enum.t) :: boolean()
end