From b9e2078e5a007ec8c26605f2ab76dd14c20a1e9f Mon Sep 17 00:00:00 2001 From: John Denker Date: Mon, 18 Oct 2021 12:28:15 -0700 Subject: relocate count_header code to more appropriate file --- poiss.c | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'poiss.c') diff --git a/poiss.c b/poiss.c index 70a20b9..a286184 100644 --- a/poiss.c +++ b/poiss.c @@ -148,32 +148,6 @@ double limp(unsigned int const nprm, double const* _prm, return rslt; } -// Scan the data array, -// looking for records that look like headers -// (as opposed to numerical data). -int count_header(vector > const aoa){ - int NR = aoa.size(); - int hh = 0; - for (; hh < NR; hh++) { - if (aoa[hh].size() == 0) continue; - string word = aoa[hh][0]; - size_t where; - where = word.find_first_not_of(" "); - if (where == string::npos) continue; - word = word.substr(where); - try { - stod(word, &where); // don't care about return value - } - catch (exception& ee) { - continue; - } - word = word.substr(where); - where = word.find_first_not_of(" "); - if (where == string::npos) break; - } - return hh; -} - // Some tricky heuristics. // Guess a starting point for the fitting process // (i.e. minimization process). -- cgit v1.2.3