More changes

This commit is contained in:
2022-06-28 08:57:51 +02:00
parent 0b318ac0e4
commit e367229253
6 changed files with 129 additions and 20 deletions

9
lib/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, integer()) :: boolean()
end