?? evohulkbist.java~
字號:
/*
* MonicaServer.java
*
* Created on 16 April 2001, 17:12
*/
package jaga.pj.circuits.control;
import jaga.control.*;
import jaga.deploy.*;
import jaga.evolve.*;
import jaga.experiment.*;
import jaga.*;
import jaga.pj.circuits.*;
import jaga.pj.circuits.experiment.*;
import jaga.pj.circuits.fpgaft.*;
import jaga.pj.gral.*;
import islandev.IslandsEvolutionServer;
import debug.DebugLib;
import java.util.Vector;
import java.rmi.*;
import java.io.*;
/**
*
* @author Michael Garvie
* @version
*/
public abstract class EvoHulkBIST
{
static Vector taskQ = new Vector();
static Vector taskQNames = new Vector();
static Vector taskQDescr = new Vector(); // when using database
static Vector taskQBestIndID = new Vector(); // when using database
static Vector taskQEffort = new Vector(); // when using database
static String logDir;
static final String logFileName = "hulk.txt";
static final double migrationRate = 1; // large cluster!!
public static void main( String[] args )
{
logDir = args[ 0 ];
DebugLib.trcLogger.isLogging = true;
DebugLib.logFileName = logFileName;
try
{
//addAdd1( "TTAdd1" );
IslandsEvolutionServer ms = new IslandsEvolutionServer( "Hulk", taskQ, taskQNames, logDir, migrationRate );
ms.bindServer();
//MonicaServer ms = new MonicaServer( "MonicaServer", taskQ, taskQNames, args[ 0 ], 0.5 );
}catch( java.rmi.RemoteException e )
{
System.out.println( e );
}catch( IOException e )
{
e.printStackTrace();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -