A new clustering method -- addition.
This commit is contained in:
parent
d7c31b6c05
commit
2819e9c170
@ -1,5 +1,6 @@
|
|||||||
package eva2.server.go.individuals;
|
package eva2.server.go.individuals;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -19,7 +20,7 @@ import java.util.Comparator;
|
|||||||
* @author mkron
|
* @author mkron
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class AbstractEAIndividualComparator implements Comparator<Object> {
|
public class AbstractEAIndividualComparator implements Comparator<Object>, Serializable {
|
||||||
|
|
||||||
// flag whether a data field should be used.
|
// flag whether a data field should be used.
|
||||||
String indyDataKey = null;
|
String indyDataKey = null;
|
||||||
|
@ -39,7 +39,7 @@ public class ClusteringHierarchical implements InterfaceClustering, Serializable
|
|||||||
private Vector<Integer>[] children;
|
private Vector<Integer>[] children;
|
||||||
// private boolean[] clustered;
|
// private boolean[] clustered;
|
||||||
// private boolean m_TestConvergingSpeciesOnBestOnly = true;
|
// private boolean m_TestConvergingSpeciesOnBestOnly = true;
|
||||||
private boolean TRACE = true;
|
private boolean TRACE = false;
|
||||||
|
|
||||||
public ClusteringHierarchical() {
|
public ClusteringHierarchical() {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user