ISolution.cs 109 B

12345678
  1. 
  2. namespace MetaheuristicsPCL
  3. {
  4. public interface ISolution
  5. {
  6. double Value { get; }
  7. }
  8. }