Salome HOME
Remove the use of getlogin.
[modules/yacs.git] / src / genericgui / LinkAStar.hxx
index 25b808eb271099691f2b239be4a2bec88d99642b..02ce5f91835f03319a1f06bcf9b9e17fa55dadf9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2020  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -61,7 +61,7 @@ namespace YACS
         std::pair<int,int> pos;
         bool operator<(const Cost& a) const
           {
-            return (a.F <= F);
+            return (a.F < F);
           }
       };