// 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 de.ugoe.cs.autoquest.tasktrees.alignment.pal.misc; /** * limits for branch lengths * * @version $Id: BranchLimits.java,v 1.9 2001/09/09 22:15:16 alexi Exp $ * * @author Korbinian Strimmer */ public interface BranchLimits { // // Public stuff // /** minimum branch length */ double MINARC = 1.0e-9; /** maximum branch length */ double MAXARC = 100.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; }