Ignore:
Timestamp:
Oct 8, 2010, 10:28:38 AM (14 years ago)
Author:
gnappo
Message:

Piccola modifica al generatore pseudo casuale da cui è possibile farsi restituire il seme. Aggiunta di alcuni script per analizzare l'output e creazione struttura directory provvisioria per l'output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/weka/clusterers/forMetisMQI/Random.java

    r6 r25  
    77        private static Random instance = null;
    88       
     9        private long seed = 1234567890;
     10       
    911        /**
    10          * Return an instance of a random generator with a default seed.
     12         * Return an instance of a random generator with a random seed.
    1113         * @return
    1214         */
    1315        public static Random instance() {
    14                 if(instance == null)
    15                         instance = new Random();
     16                if(instance == null) {
     17                        instance = new Random(/*new java.util.Random().nextLong()*/1234567890);
     18                }
    1619                return instance;
    1720        }
    1821       
    19         private Random() {
    20                 super(1234567890);
     22        public long getSeed() {
     23                return seed;
     24        }
     25       
     26        private Random(long seed) {
     27                super(seed);
     28                this.seed = seed;
    2129        }
    2230
Note: See TracChangeset for help on using the changeset viewer.