Package edu.brown.benchmark.tpce.util

Examples of edu.brown.benchmark.tpce.util.EGenRandom


        txnArray = null;
     }

    public CETxnMixGenerator( TDriverCETxnSettings driverCETxnSettings, long RNGSeed, BaseLogger logger ){
        this.driverCETxnSettings =  driverCETxnSettings;
        rnd = new EGenRandom(RNGSeed );
        this.logger = logger;
        txnArrayCurrentIndex = 0;
        txnArray = null;
     }
View Full Code Here


    public MEETickerTape(MEESUTInterface sut, MEEPriceBoard priceBoard, Date baseTime, Date currentTime ){
        this.sut = sut;
        this.priceBoard = priceBoard;
        batchIndex = 0;
        rnd = new EGenRandom( EGenRandom.RNG_SEED_BASE_MEE_TICKER_TAPE);
        enabled = true;
        this.baseTime = baseTime;
        this.currentTime = currentTime;
        inTheMoneyLimitOrderQ = new LinkedList<TTickerEntry> ();
        Method AddLimitTrigger = null;
View Full Code Here

    public MEETickerTape(MEESUTInterface sut, MEEPriceBoard priceBoard, Date baseTime, Date currentTime, long RNGSeed ){
         this.sut = sut;
         this.priceBoard = priceBoard;
         batchIndex = 0;
         rnd = new EGenRandom(RNGSeed);
         enabled = true;
         this.baseTime = baseTime;
         this.currentTime = currentTime;
         inTheMoneyLimitOrderQ = new LinkedList<TTickerEntry> ();
         initialize();
View Full Code Here

    public DailyMarketGenerator(Table catalog_tbl, TPCEGenerator generator) {
        super(catalog_tbl, generator);
       
        sec = new SecurityHandler(generator);
        rnd = new EGenRandom(EGenRandom.RNG_SEED_TABLE_DEFAULT);
       
        securitiesNum = SecurityHandler.getSecurityNum(generator.getCustomersNum());
        securitiesStart = SecurityHandler.getSecurityStart(generator.getStartCustomer());
       
        counter = securitiesStart;
View Full Code Here

        addrGenerator.setCounter(true); // we need to generate addresses for customers only
       
        divTaxRates = generator.getInputFile(InputFile.TAXDIV);
        countryTaxRates = generator.getInputFile(InputFile.TAXCOUNTRY);
       
        rnd = new EGenRandom(EGenRandom.RNG_SEED_TABLE_DEFAULT);
    }
View Full Code Here

TOP

Related Classes of edu.brown.benchmark.tpce.util.EGenRandom

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.