1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01: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 7119bce9f3
commit 79c51ac51f

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;