#include "vec.hpp"#include <cstring>#include <iostream>#include <cassert>Go to the source code of this file.
Classes | |
| class | Mat< T > |
| Matrix of primitive numeric values. More... | |
Defines | |
| #define | SWAP(a1, a2, tmp) { (tmp) = (a1); (a1) = (a2); (a2) = (tmp); } |
Functions | |
| template<class T > | |
| ostream & | operator<< (ostream &os, const Mat< T > &m) |
| #define SWAP | ( | a1, | |||
| a2, | |||||
| tmp | ) | { (tmp) = (a1); (a1) = (a2); (a2) = (tmp); } |
Definition at line 12 of file mat.hpp.
Referenced by interchangePermutations(), and Mat< T >::swapRows().