debug conversion

release/4.3a0
Varun Agrawal 2024-12-16 14:28:27 -05:00
parent 37f6de744d
commit df0f597ed7
1 changed files with 3 additions and 1 deletions

View File

@ -260,7 +260,9 @@ DecisionTreeFactor TableFactor::toDecisionTreeFactor() const {
ss << keyValueForIndex(key, i);
}
// k will be in reverse key order already
uint64_t k = std::stoll(ss.str().c_str());
uint64_t k;
ss >> k;
std::cout << "ss: " << ss.str() << ", k=" << k << std::endl;
pair_table.push_back(std::make_pair(k, sparse_table_.coeff(i)));
}