Macaulay2 Engine
Loading...
Searching...
No Matches

◆ show()

void Subsets::show ( std::ostream & o,
const Subset & a )
static

Definition at line 203 of file comb.cpp.

204{
205 o << "[";
206 for (size_t i = 0; i < a.size(); i++)
207 {
208 if (i > 0) o << ",";
209 o << a[i];
210 }
211 o << "]";
212}

Referenced by TEST(), and TEST().