Changeset 19423 for trunk/FACT++/src
- Timestamp:
- 01/07/19 21:41:44 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/rootifysql.cc
r19403 r19423 528 528 throw runtime_error("Only splitting by --split-sequence or --split-quantile is allowed."); 529 529 530 const size_t num_split = ::max(split_seq.size(), split_quant.size()+1); 530 const size_t num_split = split_seq.size()+split_quant.size()==0 ? 0 : 531 ::max(split_seq.size(), split_quant.size()+1); 531 532 532 533 map<size_t, size_t> split_lut;
Note:
See TracChangeset
for help on using the changeset viewer.