Doc update.

This commit is contained in:
Marcel Kronfeld 2008-03-27 14:56:49 +00:00
parent 29b6c840ac
commit fe490f4b22
2 changed files with 6 additions and 2 deletions

View File

@ -230,7 +230,11 @@ public class ClusteringHillClimbing implements InterfacePopulationChangedEventLi
public void freeWilly() {}
public String getName() {
return "Cluster-HC";
return "Clustering-HC";
}
public String globalInfo() {
return "Similar to multi-start HC, but clusters the population during optimization to remove redundant individuals for efficiency.";
}
/**

View File

@ -1734,7 +1734,7 @@ public class ParticleSwarmOptimization implements InterfaceOptimizer, java.io.Se
return this.m_CheckConstraints;
}
public String checkConstraintsTipText() {
return "Toggle constraints check (if true velocity is reduced by "+this.m_ReduceSpeed+" until constraints satisfied).";
return "Toggle constraints check (whether particles are allowed to leave the range).";
}
/**