/*
 * TestClass.java
 *
 * Created on 4 maart 2006, 8:50
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

package DOPParser;

/**
 *
 * @author gideon
 */

import java.util.*;
import java.lang.Integer.*;
import java.io.File;

public class TestClass {
    
    /** Creates a new instance of TestClass */
    public TestClass() {
        /*
        TreeMap<Double, String> mySortedList = new TreeMap<Double, String>();
        
        mySortedList.put((Double) .4 , "H");
        mySortedList.put((Double) .6 , "i");
        mySortedList.put((Double) .8 , "J");
        mySortedList.put((Double) .2 , "G");
        mySortedList.put((Double) .9 , "K");
        
        if (1.1 > mySortedList.firstKey().doubleValue()){
            mySortedList.remove(mySortedList.firstKey());
            mySortedList.put((Double) .5 , "Z");
        }
        
        for (Double key : mySortedList.keySet()){
            System.out.println("key="+ key + ";value=" + mySortedList.get(key));
        }
        //String pointer = "0_" + ((Integer) (7 - 1)).toString();
        //System.out.println(pointer);
        String pointer = "3_15";
        int answer = java.lang.Integer.parseInt(pointer.split("_")[1]) ;

        System.out.println("index=" + answer);
        */
        
       
        
    }
    
    
   public static void main(String[] args) throws Exception {
       
       //System.out.println(4.*((Math.log(5.)-Math.log(6.))/Math.log(2.)) +8.*((Math.log(8.)-Math.log(9.))/Math.log(2.)) + 11.*(Math.log(10.)/Math.log(2.))  - 9.*(Math.log(9.)/Math.log(2.)));
       System.out.println(-6.*(Math.log(5.)/Math.log(2.)) -2.*(Math.log(9.)/Math.log(2.)) +6.*(Math.log(6.)/Math.log(2.)) );
   }   
}
