Changeset 19281 for trunk/FACT++/src


Ignore:
Timestamp:
10/23/18 20:26:27 (6 years ago)
Author:
tbretz
Message:
Some minor updates to the output.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/rootifysql.cc

    r19280 r19281  
    822822        cout << "Writing data to tree '" << tree << "'" << (nofill?" (--skipped--)":"") << endl;
    823823        if (num_split)
    824             cout << "Splitting configured with " << num_split << " branches." << endl;
     824        {
     825            cout << "Splitting configured " << (split_seq.empty()?"randomly":"in sequence") << " into " << num_split << " branches." << endl;
     826            if (!split_quant.empty())
     827                cout << "Seed value configured as " << conf.Get<uint64_t>("seed") << "." << endl;
     828        }
    825829    }
    826830
     
    10101014    const uniform_real_distribution<double> distribution(0,1);
    10111015    mt19937_64 generator;
    1012     if (conf.Has("seed"))
    1013         generator.seed(conf.Get<uint64_t>("seed"));
     1016    generator.seed(conf.Get<uint64_t>("seed"));
    10141017    auto rndm = bind(distribution, generator);
    10151018
Note: See TracChangeset for help on using the changeset viewer.