MOOSE - Multiscale Object Oriented Simulation Environment
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SparseMatrix.cpp
Go to the documentation of this file.
1 /**********************************************************************
2 ** This program is part of 'MOOSE', the
3 ** Messaging Object Oriented Simulation Environment,
4 ** also known as GENESIS 3 base code.
5 ** copyright (C) 2003-2006 Upinder S. Bhalla. and NCBS
6 ** It is made available under the terms of the
7 ** GNU Lesser General Public License version 2.1
8 ** See the file COPYING.LIB for the full notice.
9 **********************************************************************/
10 
11 #include <algorithm>
12 #include <vector>
13 #include <map>
14 #include <cassert>
15 #include <iostream>
16 #include "SparseMatrix.h"
17 
18 using namespace std;
19 
20 
21 const unsigned int SM_MAX_ROWS = 200000;
22 const unsigned int SM_MAX_COLUMNS = 200000;
23 const unsigned int SM_RESERVE = 8;
const unsigned int SM_MAX_COLUMNS
const unsigned int SM_RESERVE
const unsigned int SM_MAX_ROWS