line |
true |
false |
branch |
57
|
0 |
0 |
for (const auto &rowPair : rows)
|
59
|
0 |
0 |
dump(rowPair.first, out);
|
60
|
0 |
0 |
out << " | ";
|
61
|
0 |
0 |
dump(*rowPair.second, out);
|
67
|
0 |
0 |
for (const auto &symbol : symbols)
|
69
|
0 |
0 |
dump(symbol, out);
|
70
|
0 |
0 |
out << std::endl;
|
76
|
0 |
0 |
for (const auto &varPair : vars)
|
78
|
0 |
0 |
out << varPair.first.name() << " = ";
|
|
0 |
0 |
out << varPair.first.name() << " = ";
|
|
0 |
0 |
out << varPair.first.name() << " = ";
|
79
|
0 |
0 |
dump(varPair.second, out);
|
80
|
0 |
0 |
out << std::endl;
|
86
|
0 |
0 |
for (const auto &cnPair : cns)
|
87
|
0 |
0 |
dump(cnPair.first, out);
|
92
|
0 |
0 |
for (const auto &editPair : edits)
|
93
|
0 |
0 |
out << editPair.first.name() << std::endl;
|
|
0 |
0 |
out << editPair.first.name() << std::endl;
|
|
0 |
0 |
out << editPair.first.name() << std::endl;
|
98
|
0 |
0 |
for (const auto &rowPair : row.cells())
|
100
|
0 |
0 |
out << " + " << rowPair.second << " * ";
|
|
0 |
0 |
out << " + " << rowPair.second << " * ";
|
|
0 |
0 |
out << " + " << rowPair.second << " * ";
|
101
|
0 |
0 |
dump(rowPair.first, out);
|
133
|
0 |
0 |
for (const auto &term : cn.expression().terms())
|
|
0 |
0 |
for (const auto &term : cn.expression().terms())
|
135
|
0 |
0 |
out << term.coefficient() << " * ";
|
|
0 |
0 |
out << term.coefficient() << " * ";
|
136
|
0 |
0 |
out << term.variable().name() << " + ";
|
|
0 |
0 |
out << term.variable().name() << " + ";
|
|
0 |
0 |
out << term.variable().name() << " + ";
|
177
|
0 |
0 |
std::stringstream stream;
|
178
|
0 |
0 |
impl::DebugHelper::dump(value, stream);
|
179
|
0 |
0 |
return stream.str();
|