1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Hack; must bring norm2 into the unary operator list.

ET's are still incomplete.
This commit is contained in:
Peter Boyle 2015-05-10 15:30:29 +01:00
parent e647cf0459
commit 5fcf42cb30

View File

@ -70,7 +70,8 @@ int main (int argc, char ** argv)
Real nrmC = norm2(Check);
Real nrmB = norm2(Bar);
Real nrm = norm2(Check-Bar);
Diff = Check-Bar;
Real nrm = norm2(Diff);
std::cout<<"N2diff ="<<nrm<<" "<<nrmC<<" " <<nrmB<<std::endl;
Real snrmC =0;