Minor adaptions due to move wsi.ra --> eva2.tools

This commit is contained in:
Marcel Kronfeld 2009-09-16 14:07:58 +00:00
parent 1ae819f769
commit e9733307d9
11 changed files with 21 additions and 17 deletions

View File

@ -258,7 +258,20 @@
<copy todir="${build.directory}/resources">
<fileset dir="${resources.directory}" includes="**/*" />
</copy>
</target>
<!--
<copy todir="${JE2Probs.directory}/${build.directory}/resources">
<fileset dir="${JE2Probs.directory}/${resources.directory}" includes="**/*" />
</copy>
<copy todir="${JE2ESModel.directory}/${build.directory}/resources">
<fileset dir="${JE2ESModel.directory}/${resources.directory}" includes="**/*" />
</copy>
<copy todir="${JE2Research.directory}/${build.directory}/resources">
<fileset dir="${JE2Research.directory}/${resources.directory}" includes="**/*" />
</copy>
-->
</target>
<!--++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Compile JE2Probs

View File

@ -400,7 +400,7 @@ public class DPointSetMultiIcon extends DComponent
public String toString()
{
String text = "wsi.ra.chart2d.DPointSet[size:" + getSize();
String text = "eva2.tools.chart2d.DPointSet[size:" + getSize();
for (int i = 0; i < xMI.getSize(); i++)
{

View File

@ -34,7 +34,7 @@ class ServerNode implements java.io.Serializable {
public class PropertyRemoteServers implements java.io.Serializable {
private ServerNode[] m_AvailableNodes;
// private String m_ClassToStart = "wsi.ra.jproxy.RMIServer";
// private String m_ClassToStart = "eva2.tools.jproxy.RMIServer";
private transient String m_password = "";
private String m_Login = "";
// private boolean m_DeployJar = true;

View File

@ -39,10 +39,6 @@ import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
/*import wsi.ra.jproxy.test.Something;
import wsi.ra.jproxy.test.SomethingInterface;*/
/**
* Created by IntelliJ IDEA.
* User: streiche

View File

@ -5,7 +5,7 @@
//import eva2.server.go.individuals.InterfaceESIndividual;
//import eva2.server.go.populations.Population;
//import eva2.server.go.problems.InterfaceOptimizationProblem;
//import wsi.ra.math.RNG;
//import eva2.tools.math.RNG;
//
///**
// * Created by IntelliJ IDEA.

View File

@ -322,7 +322,7 @@ public class IslandModelEA implements InterfacePopulationChangedEventListener, I
*/
public static void main(String[] args) {
// @todo die ServerStarter muss ich noch hin kriegen
// @todo Wichtig ich brauche den wsi.ra.jproxy.RMIServer!
// @todo Wichtig ich brauche den eva2.tools.jproxy.RMIServer!
PropertyRemoteServers s = new PropertyRemoteServers();
s.addServerNode("raold1.informatik.uni-tuebingen.de", 2);
s.addServerNode("raold2.informatik.uni-tuebingen.de", 2);

View File

@ -20,9 +20,6 @@ import javax.management.ObjectName;
import eva2.tools.tool.BasicResourceLoader;
//import wsi.ra.tool.BasicResourceLoader;
/**
* Allow for java to list Classes that exist in one package and can be instantiated from
* the classpath, either directly or through a jar on the classpath.

View File

@ -190,7 +190,7 @@ public class DArray implements DIntDoubleMap{
}
public String toString(){
String text = "wsi.ra.chart2d.DArray[size:"+size;
String text = "eva2.tools.chart2d.DArray[size:"+size;
if( size < 11 )
for( int i=0; i<size; i++ ) text += ", "+value[i];
text += "]";

View File

@ -44,7 +44,7 @@ public class DBorder extends Insets{
}
public String toString(){
return "wsi.ra.chart2d.DBorder[top="+top+",left="+left
return "eva2.tools.chart2d.DBorder[top="+top+",left="+left
+",bottom="+bottom+",right="+right+"]";
}
}

View File

@ -240,7 +240,7 @@ public class DPointSet extends DComponent
}
public String toString(){
String text = "wsi.ra.chart2d.DPointSet[size:"+getSize();
String text = "eva2.tools.chart2d.DPointSet[size:"+getSize();
for( int i=0; i<x.getSize(); i++ )
text += ",("+x.getImage(i)+","+y.getImage(i)+")";
text += "]";

View File

@ -20,8 +20,6 @@ package eva2.tools.sort;
* IMPORTS
*==========================================================================*/
//import wsi.ra.jchart2d.*;
import java.util.*;
/*==========================================================================*
* CLASS DECLARATION