net.maizegenetics.taxa.tree.BranchLimits Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tassel Show documentation
Show all versions of tassel Show documentation
TASSEL is a software package to evaluate traits associations, evolutionary patterns, and linkage
disequilibrium.
// BranchLimits.java
//
// (c) 1999-2001 PAL Development Core Team
//
// This package may be distributed under the
// terms of the Lesser GNU General Public License (LGPL)
package net.maizegenetics.taxa.tree;
/**
* limits for branch lengths
*
* @version $Id: BranchLimits.java,v 1.1 2007/01/12 03:26:18 tcasstevens Exp $
*
* @author Korbinian Strimmer
*/
public interface BranchLimits
{
//
// Public stuff
//
/** minimum branch length */
double MINARC = 1.0e-9;
/** maximum branch length */
double MAXARC = 1.0;
/** default branch length */
double DEFAULT_LENGTH = 0.04;
/** maximum tolerated error when determining branch lengths */
double ABSTOL = 5.0e-07;
/** desired fractional digits when determining branch lengths */
int FRACDIGITS = 6;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy