public class get_subtree_specific_chars {
+ final static boolean SIMPLE = true;
+
public static void main( final String args[] ) {
if ( args.length != 1 ) {
System.err.println();
final SortedSet<String> all_chars = getAllExternalPresentAndGainedCharacters( phy.getRoot() );
System.out.println( "Sum of all external characters:\t" + all_chars.size() );
System.out.println();
- final boolean SIMPLE = false;
for( final PhylogenyNodeIterator iter = phy.iteratorPostorder(); iter.hasNext(); ) {
final PhylogenyNode node = iter.next();
if ( !SIMPLE && node.isExternal() ) {