Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using GAF;
- namespace Operators
- {
- public class SimpleOperator : IGeneticOperator
- {
- public void Invoke(Population currentPopulation,
- ref Population newPopulation, FitneddFunction fitnessFunctionDelegate)
- {
- throw new NotImplementedExepction();
- }
- public int GetOperatorInvokedEvauations()
- {
- throw new NotImplementedExepction();
- }
- public bool Enabled { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment