* @param name
* DOCUMENT ME!
*/
- public SequenceNode(Object val, SequenceNode parent, float dist,
+ public SequenceNode(Object val, SequenceNode parent, double dist,
String name)
{
super(val, parent, name);
* DOCUMENT ME!
*/
public SequenceNode(Object val, SequenceNode parent, String name,
- float dist, int bootstrap, boolean dummy)
+ double dist, int bootstrap, boolean dummy)
{
super(val, parent, name);
this.dist = dist;
String nodename = null;
String commentString2 = null; // comments after simple node props
- float DefDistance = (float) 0.001; // @param Default distance for a node -
+ double DefDistance = (float) 0.001; // @param Default distance for a node -
// very very small
int DefBootstrap = -1; // @param Default bootstrap for a node
- float distance = DefDistance;
+ double distance = DefDistance;
int bootstrap = DefBootstrap;
boolean ascending = false; // flag indicating that we are leaving the
{
try
{
- distance = (Float.valueOf(ndist.stringMatched(1))).floatValue();
+ distance = (Double.valueOf(ndist.stringMatched(1))).floatValue();
HasDistances = true;
nodehasdistance = true;
} catch (Exception e)