Changeset 19281
- Timestamp:
- 10/23/18 20:26:27 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/rootifysql.cc
r19280 r19281 822 822 cout << "Writing data to tree '" << tree << "'" << (nofill?" (--skipped--)":"") << endl; 823 823 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 } 825 829 } 826 830 … … 1010 1014 const uniform_real_distribution<double> distribution(0,1); 1011 1015 mt19937_64 generator; 1012 if (conf.Has("seed")) 1013 generator.seed(conf.Get<uint64_t>("seed")); 1016 generator.seed(conf.Get<uint64_t>("seed")); 1014 1017 auto rndm = bind(distribution, generator); 1015 1018
Note:
See TracChangeset
for help on using the changeset viewer.