public static void initialize()
        {
            int totalPersons = DatabaseManager.GetUserCount();

            //MessageBox.Show("" + totalPersons);
            r   = new RLda(totalPersons * 10, totalPersons);
            ic  = new ICA(76, 101, totalPersons * 10, totalPersons * 10);
            net = new LVQ(totalPersons, totalPersons);
            noOfKnownPatterns   = totalPersons;
            noOfUnknownPatterns = totalPersons;
            totalNoOfPatterns   = totalPersons * 2;
            //MessageBox.Show("Constructor called");
        }
 public static void initialize()
 {
     int totalPersons = DatabaseManager.GetUserCount();
     //MessageBox.Show("" + totalPersons);
     r = new RLda(totalPersons * 10, totalPersons);
     ic = new ICA(76, 101, totalPersons * 10, totalPersons * 10);
     net = new LVQ(totalPersons, totalPersons);
     noOfKnownPatterns = totalPersons;
     noOfUnknownPatterns = totalPersons;
     totalNoOfPatterns = totalPersons * 2;
     //MessageBox.Show("Constructor called");
 }