Files
solver/MbDCode/FullColumn.cpp
Aik-Siong Koh 8ca8eb7122 Second commit
2023-04-28 16:29:43 -06:00

17 lines
311 B
C++

#include <sstream>
#include "FullColumn.h"
using namespace MbD;
std::string FullColumn<double>::toString() {
std::stringstream ss;
ss << "FullColumn { ";
for (int i = 0; i < this->size() - 1; i++) {
ss << this->at(i) << ", ";
}
ss << this->back() << " }";
return ss.str();
}