X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fsalomeloader%2Fgraph.py;h=9586575c8d6eafebf90a26c41b3f6c3082236ea8;hb=9c6af7fa973eb5d2ed36eb3d64390940d13fbd08;hp=5d7bd2e1d869b7cc8b88cacfae4cc3518eca8d41;hpb=c81be9b5e74b26e207bd6efd0ccf68418ac536a3;p=modules%2Fyacs.git diff --git a/src/salomeloader/graph.py b/src/salomeloader/graph.py index 5d7bd2e1d..9586575c8 100644 --- a/src/salomeloader/graph.py +++ b/src/salomeloader/graph.py @@ -1,10 +1,10 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2006-2012 CEA/DEN, EDF R&D +# Copyright (C) 2006-2016 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 # License as published by the Free Software Foundation; either -# version 2.1 of the License. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -95,9 +95,9 @@ def test(): } display(G) I=invert(G) - print reachable(G,2) - print reachable(I,6) - print reachable(G,2) & reachable(I,6) + print(reachable(G,2)) + print(reachable(I,6)) + print(reachable(G,2) & reachable(I,6)) if __name__ == "__main__": test()