lphy.base.evolution.HasTaxa Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-base Show documentation
Show all versions of lphy-base Show documentation
The standard library of LPhy, which contains the required generative distributions and basic functions.
The newest version!
package lphy.base.evolution;
/**
* For everything has taxa, and getTaxa when needed.
*/
public interface HasTaxa {
/**
* @return a taxa object describing the taxa.
*/
Taxa getTaxa();
}