| 103 | } |
| 104 | |
| 105 | unsigned int DataTable::getNumSamplesRequired() const |
| 106 | { |
| 107 | unsigned long samplesRequired = 1; |
| 108 | unsigned int i = 0; |
| 109 | for (auto &variable : grid) |
| 110 | { |
| 111 | samplesRequired *= (unsigned long) variable.size(); |
| 112 | i++; |
| 113 | } |
| 114 | |
| 115 | return (i > 0 ? samplesRequired : (unsigned long) 0); |
| 116 | } |
| 117 | |
| 118 | bool DataTable::isGridComplete() const |
| 119 | { |
nothing calls this directly
no outgoing calls
no test coverage detected