Commit dae9784249643c9c4b1e2cdb3731bf672897dc2b
1 parent
12050b4e
modified flow.h in biomodels
Showing
1 changed file
with
1 additions
and
4 deletions
Show diff stats
stim/biomodels/flow.h
... | ... | @@ -3,9 +3,6 @@ |
3 | 3 | #include <iomanip> // Required for setw |
4 | 4 | #include <iostream> // Required for cout, cin, etc. |
5 | 5 | #include <tuple> // Required for returning multiple values from a function |
6 | -#include <vector> | |
7 | -//#include <string> | |
8 | -//#include <stdlib.h> // Required to remove ambiguous error for cout, cin, etc. | |
9 | 6 | |
10 | 7 | using namespace std; |
11 | 8 | |
... | ... | @@ -262,7 +259,7 @@ void flow::inversion(double **a, int n, double **b) |
262 | 259 | { |
263 | 260 | // Get 1 over the determinant of A |
264 | 261 | double det = (double)(1.0/determinant(a, n)); |
265 | - cerr << "\n1/det(C) = " << det << endl; // DELETE!!! | |
262 | +// cerr << "\n1/det(C) = " << det << endl; // DELETE!!! | |
266 | 263 | |
267 | 264 | // Memory allocation |
268 | 265 | double *tmp = new double[(n-1) * (n-1)]; | ... | ... |