// Author: Douglas Wilhelm Harder // Copyright (c) 2009 by Douglas Wilhelm Harder. All rights reserved. #ifndef CA_UWATERLOO_ALUMNI_DWHARDER_SPARSE_SYSTEMS #define CA_UWATERLOO_ALUMNI_DWHARDER_SPARSE_SYSTEMS // Author: Douglas Wilhelm Harder // Copyright (c) 2009 by Douglas Wilhelm Harder. All rights reserved. // Under construction.... #include "Exceptions.h" #include using namespace std; #include enum Orientation {ROW, COLUMN}; enum Norm {ONE, TWO, INF}; enum Product {FULL, DIAGONAL, OFF_DIAGONAL, UPPER, LOWER, STRICT_UPPER, STRICT_LOWER}; template class Matrix; template class Vector; #include "Vector.h" #include "Matrix.h" #endif