Lines Matching defs:out
479 << "' out of range [-" << max_d() << ", " << max_d() << "]";
912 // given D) anyway, because out of bound or not, we need this value
1048 // given D) anyway, because out of bound or not, we need this value
1132 /// @param snak out parameter. This is the snake current when the two
1263 /// @param out the output stream to print the snake to.
1268 const snake &s, ostream& out)
1273 out << "snake start: ";
1274 out << "(" << s.begin().x() << ", " << s.end().y() << ")\n";
1276 out << "snake intermediate: ";
1277 out << "(" << s.intermediate().x() << ", " << s.intermediate().y() << ")\n";
1279 out << "diagonal point(s): ";
1286 out << "(" << x << "," << y << ") ";
1288 out << "\n";
1290 out << "snake end: ";
1291 out << "(" << s.end().x() << ", " << s.end().y() << ")\n";
2027 ostream& out)
2030 out << "no deletion:\n";
2033 out << "1 deletion:\n"
2038 out << es.num_deletions() << " deletions:\n"
2047 out << ", ";
2048 out << i->index() << " (" << str1_base[i->index()] << ")";
2050 out << "\n\n";
2053 out << "no insertion\n";
2055 out << "1 insertion\n";
2057 out << es.num_insertions() << " insertions:\n";
2064 out << "\t before index of first sequence: " << idx + 1
2067 out << "\t after index of first sequence: " << idx
2071 out << "\t\t inserted indexes from second sequence: ";
2078 out << ", ";
2079 out << *j << " (" << str2_base[*j] << ")";
2081 out << "\n";
2083 out << "\n\n";