Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. bool AbstractSearchN::found()
  2. {
  3.     double rez = norm((x - x_prev).toVector());
  4. //    return (rez < eps);
  5.  
  6.     if(norm(df_curr.toVector()) < eps)
  7.         return true;
  8.     return false;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement