Exemplo n.º 1
0
        public GPFunctionServer()
        {
            Clear();

            //
            // Get an interface to the compiler we'll eventually need
            m_Compiler = new GPCompilerServer();
        }
Exemplo n.º 2
0
 /// <summary>
 /// Default constructor: Get an IGPCompiler created, because we need it to
 /// write and compile our custom fitness function.
 /// </summary>
 public GPCustomFitnessServer()
 {
     //
     // Get an interface to the compiler we'll eventually need
     m_Compiler = new GPCompilerServer();
 }