Skip to content
Snippets Groups Projects
Commit ff9df2ba authored by Mark Jenkinson's avatar Mark Jenkinson
Browse files

Reverted to branch

parent a87fb729
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
/* CCOPYRIGHT */ /* CCOPYRIGHT */
#include "config.h"
#include <iostream> #include <iostream>
#include <iomanip> #include <iomanip>
#include <sstream> #include <sstream>
...@@ -96,10 +94,10 @@ namespace MISCMATHS { ...@@ -96,10 +94,10 @@ namespace MISCMATHS {
for(int r=1; r <= nrows; r++) for(int r=1; r <= nrows; r++)
ip(int(p(r))) = r; ip(int(p(r))) = r;
for(int rr=1; rr <= nrows; rr++) for(int r=1; r <= nrows; r++)
for(map<int,double>::const_iterator it=data[rr-1].begin(); it!=data[rr-1].end(); it++) for(map<int,double>::const_iterator it=data[r-1].begin(); it!=data[r-1].end(); it++)
{ {
pA.insert(int(ip(rr)), int(ip((*it).first+1)), (*it).second); pA.insert(int(ip(r)), int(ip((*it).first+1)), (*it).second);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment