Minor cosmetics -- added option to (de)activate numbering of graph legend entries.
This commit is contained in:
parent
49b4c99529
commit
8aeb94411e
@ -85,6 +85,11 @@ public class FunctionArea extends DArea implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private boolean doShowGraphToolTips = true;
|
private boolean doShowGraphToolTips = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate whether graph legend entries should show their unique number.
|
||||||
|
*/
|
||||||
|
private boolean appendIndexInLegend = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -1101,7 +1106,7 @@ public class FunctionArea extends DArea implements Serializable {
|
|||||||
if (!on)
|
if (!on)
|
||||||
legendBox = null;
|
legendBox = null;
|
||||||
else
|
else
|
||||||
legendBox = new GraphPointSetLegend(m_PointSetContainer, true);
|
legendBox = new GraphPointSetLegend(m_PointSetContainer, isAppendIndexInLegend());
|
||||||
repaint();
|
repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1154,7 +1159,7 @@ public class FunctionArea extends DArea implements Serializable {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void updateLegend() {
|
public void updateLegend() {
|
||||||
GraphPointSetLegend lb = new GraphPointSetLegend(m_PointSetContainer, true);
|
GraphPointSetLegend lb = new GraphPointSetLegend(m_PointSetContainer, isAppendIndexInLegend() );
|
||||||
setLegend(lb);
|
setLegend(lb);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1176,4 +1181,12 @@ public class FunctionArea extends DArea implements Serializable {
|
|||||||
public boolean isShowGraphToolTips() {
|
public boolean isShowGraphToolTips() {
|
||||||
return doShowGraphToolTips;
|
return doShowGraphToolTips;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setAppendIndexInLegend(boolean appendIndexInLegend) {
|
||||||
|
this.appendIndexInLegend = appendIndexInLegend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isAppendIndexInLegend() {
|
||||||
|
return appendIndexInLegend;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,7 +83,7 @@ public class GraphWindow {
|
|||||||
try {
|
try {
|
||||||
if ((client==null) || client.getHostName().equals(InetAddress.getLocalHost().getHostName())) {
|
if ((client==null) || client.getHostName().equals(InetAddress.getLocalHost().getHostName())) {
|
||||||
if (TRACE) System.out.println("no RMI");
|
if (TRACE) System.out.println("no RMI");
|
||||||
m_Plotter = new Plot(PlotName,strx,stry);
|
m_Plotter = new Plot(PlotName, strx, stry, true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_Plotter = (PlotInterface) RMIProxyRemote.newInstance(new Plot(PlotName,strx,stry,false), m_MainAdapterClient);
|
m_Plotter = (PlotInterface) RMIProxyRemote.newInstance(new Plot(PlotName,strx,stry,false), m_MainAdapterClient);
|
||||||
|
@ -74,14 +74,8 @@ public class Plot implements PlotInterface, Serializable {
|
|||||||
* You might want to try to assign the x-range as x and y-range as y array
|
* You might want to try to assign the x-range as x and y-range as y array
|
||||||
* parameters.
|
* parameters.
|
||||||
*/
|
*/
|
||||||
public Plot(String PlotName, String xname, String yname, double[] x,
|
public Plot(String PlotName, String xname, String yname, double[] x, double[] y) {
|
||||||
double[] y) {
|
this(PlotName, xname, yname, true);
|
||||||
if (TRACE)
|
|
||||||
System.out.println("Constructor Plot " + PlotName);
|
|
||||||
m_xname = xname;
|
|
||||||
m_yname = yname;
|
|
||||||
m_PlotName = PlotName;
|
|
||||||
init();
|
|
||||||
DPointSet points = new DPointSet();
|
DPointSet points = new DPointSet();
|
||||||
for (int i = 0; i < x.length; i++) {
|
for (int i = 0; i < x.length; i++) {
|
||||||
points.addDPoint(x[i], y[i]);
|
points.addDPoint(x[i], y[i]);
|
||||||
@ -90,7 +84,12 @@ public class Plot implements PlotInterface, Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* A basic constructor.
|
||||||
*
|
*
|
||||||
|
* @param PlotName
|
||||||
|
* @param xname
|
||||||
|
* @param yname
|
||||||
|
* @param init
|
||||||
*/
|
*/
|
||||||
public Plot(String PlotName, String xname, String yname, boolean init) {
|
public Plot(String PlotName, String xname, String yname, boolean init) {
|
||||||
if (TRACE)
|
if (TRACE)
|
||||||
@ -102,18 +101,6 @@ public class Plot implements PlotInterface, Serializable {
|
|||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Plot(String PlotName, String xname, String yname) {
|
|
||||||
if (TRACE)
|
|
||||||
System.out.println("Constructor Plot " + PlotName);
|
|
||||||
m_xname = xname;
|
|
||||||
m_yname = yname;
|
|
||||||
m_PlotName = PlotName;
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void installButtons(JPanel buttonPan) {
|
protected void installButtons(JPanel buttonPan) {
|
||||||
JButton ClearButton = new JButton("Clear");
|
JButton ClearButton = new JButton("Clear");
|
||||||
ClearButton.addActionListener(new ActionListener() {
|
ClearButton.addActionListener(new ActionListener() {
|
||||||
@ -245,6 +232,20 @@ public class Plot implements PlotInterface, Serializable {
|
|||||||
m_Frame.setVisible(true);
|
m_Frame.setVisible(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate whether graph legend entries should show their unique number.
|
||||||
|
*/
|
||||||
|
public void setAppendIndexInLegend(boolean appendIndexInLegend) {
|
||||||
|
this.m_PlotArea.setAppendIndexInLegend(appendIndexInLegend);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether graph legend entries show their unique number.
|
||||||
|
*/
|
||||||
|
public boolean isAppendIndexInLegend() {
|
||||||
|
return m_PlotArea.isAppendIndexInLegend();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicate whether the graphs are annotated by tool tip info strings.
|
* Indicate whether the graphs are annotated by tool tip info strings.
|
||||||
* @return true if the graphs are annotated by tool tip info strings
|
* @return true if the graphs are annotated by tool tip info strings
|
||||||
|
@ -41,7 +41,7 @@ public class TopoPlot extends Plot {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public TopoPlot(String PlotName,String xname,String yname) {
|
public TopoPlot(String PlotName,String xname,String yname) {
|
||||||
super(PlotName, xname, yname);
|
super(PlotName, xname, yname, true);
|
||||||
//if (TRACE) System.out.println("Constructor TopoPlot "+PlotName);
|
//if (TRACE) System.out.println("Constructor TopoPlot "+PlotName);
|
||||||
}
|
}
|
||||||
public TopoPlot(String PlotName,String xname,String yname,double[] a, double[] b) {
|
public TopoPlot(String PlotName,String xname,String yname,double[] a, double[] b) {
|
||||||
|
@ -50,7 +50,7 @@ public class ArchivingPESAII extends AbstractArchiving implements java.io.Serial
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////
|
||||||
if (this.m_Debug) {
|
if (this.m_Debug) {
|
||||||
this.m_Plot = new eva2.gui.Plot("Debug SPEAII", "Y1", "Y2");
|
this.m_Plot = new eva2.gui.Plot("Debug SPEAII", "Y1", "Y2", true);
|
||||||
System.out.println("Population size: " + pop.size());
|
System.out.println("Population size: " + pop.size());
|
||||||
// plot the population
|
// plot the population
|
||||||
this.m_Plot.setUnconnectedPoint(0, 0, 11);
|
this.m_Plot.setUnconnectedPoint(0, 0, 11);
|
||||||
|
@ -51,7 +51,7 @@ public class ArchivingSPEAII extends AbstractArchiving implements java.io.Serial
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////
|
||||||
if (this.m_Debug) {
|
if (this.m_Debug) {
|
||||||
this.m_Plot = new eva2.gui.Plot("Debug SPEAII", "Y1", "Y2");
|
this.m_Plot = new eva2.gui.Plot("Debug SPEAII", "Y1", "Y2", true);
|
||||||
System.out.println("Population size: " + pop.size());
|
System.out.println("Population size: " + pop.size());
|
||||||
// plot the population
|
// plot the population
|
||||||
this.m_Plot.setUnconnectedPoint(0, 0, 11);
|
this.m_Plot.setUnconnectedPoint(0, 0, 11);
|
||||||
@ -349,7 +349,7 @@ public class ArchivingSPEAII extends AbstractArchiving implements java.io.Serial
|
|||||||
}
|
}
|
||||||
if (this.soutDebug) {
|
if (this.soutDebug) {
|
||||||
for (int i = 0; i < result.length; i++) System.out.println("Result "+i+": "+result[i]);
|
for (int i = 0; i < result.length; i++) System.out.println("Result "+i+": "+result[i]);
|
||||||
this.m_Plot = new eva2.gui.Plot("Debug SPEAII", "Y1", "Y2");
|
this.m_Plot = new eva2.gui.Plot("Debug SPEAII", "Y1", "Y2", true);
|
||||||
this.m_Plot.setUnconnectedPoint(0, 0, 11);
|
this.m_Plot.setUnconnectedPoint(0, 0, 11);
|
||||||
this.m_Plot.setUnconnectedPoint(1.2, 2.0, 11);
|
this.m_Plot.setUnconnectedPoint(1.2, 2.0, 11);
|
||||||
GraphPointSet mySet = new GraphPointSet(10, this.m_Plot.getFunctionArea());
|
GraphPointSet mySet = new GraphPointSet(10, this.m_Plot.getFunctionArea());
|
||||||
|
@ -1758,8 +1758,6 @@ public class Population extends ArrayList implements PopulationInterface, Clonea
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public static double[] getCorrelations(Population pop) {
|
public static double[] getCorrelations(Population pop) {
|
||||||
double[] cors = new double[pop.size()*(pop.size()-1)/2];
|
|
||||||
|
|
||||||
if (pop.size()<2) {
|
if (pop.size()<2) {
|
||||||
return new double[]{1.,1.,1.,1.};
|
return new double[]{1.,1.,1.,1.};
|
||||||
}
|
}
|
||||||
@ -1767,6 +1765,7 @@ public class Population extends ArrayList implements PopulationInterface, Clonea
|
|||||||
// EVAERROR.errorMsgOnce("Warning: population correlations can only be calculated for double valued data!");
|
// EVAERROR.errorMsgOnce("Warning: population correlations can only be calculated for double valued data!");
|
||||||
return new double[]{Double.NaN,Double.NaN,Double.NaN,Double.NaN};
|
return new double[]{Double.NaN,Double.NaN,Double.NaN,Double.NaN};
|
||||||
}
|
}
|
||||||
|
double[] cors = new double[pop.size()*(pop.size()-1)/2];
|
||||||
int index=0;
|
int index=0;
|
||||||
double corsSum=0, minCor = 10., maxCor=-10.;
|
double corsSum=0, minCor = 10., maxCor=-10.;
|
||||||
for (int i = 0; i < pop.size()-1; i++) {
|
for (int i = 0; i < pop.size()-1; i++) {
|
||||||
|
@ -39,7 +39,7 @@ public class F5Problem extends AbstractProblemDoubleOffset implements java.io.Se
|
|||||||
double[] result = new double[1];
|
double[] result = new double[1];
|
||||||
double tmp;
|
double tmp;
|
||||||
result[0] = m_YOffSet;
|
result[0] = m_YOffSet;
|
||||||
for (int i = 0; i < x.length-1; i++) {
|
for (int i = 0; i < x.length; i++) {
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
for (int j = 0; j <= i; j++) {
|
for (int j = 0; j <= i; j++) {
|
||||||
tmp += x[j]-m_XOffSet;
|
tmp += x[j]-m_XOffSet;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user