From d6517ec4009cf8128e5e5f993d6b6c98890a4651 Mon Sep 17 00:00:00 2001 From: ebocher Date: Thu, 20 Sep 2018 21:44:15 +0200 Subject: [PATCH 1/7] Fix license in pom --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dba2dd4..3f1225e 100644 --- a/pom.xml +++ b/pom.xml @@ -14,8 +14,8 @@ http://www.orbisgis.org - GNU General Public License (GPLV3+) - http://www.gnu.org/licenses/gpl-3.0.html + GNU Lesser General Public License (LGPLV3+) + http://www.gnu.org/licenses/lgpl-3.0.html From 8fb0103f18e04678a581945d6f5930a278fac5da Mon Sep 17 00:00:00 2001 From: ebocher Date: Thu, 20 Sep 2018 22:00:57 +0200 Subject: [PATCH 2/7] Fix license --- src/main/java/org/javanetworkanalyzer/alg/BFS.java | 12 ++++++------ .../javanetworkanalyzer/alg/BFSForCentrality.java | 10 +++++----- .../org/javanetworkanalyzer/alg/CentralityAlg.java | 10 +++++----- src/main/java/org/javanetworkanalyzer/alg/DFS.java | 10 +++++----- .../javanetworkanalyzer/alg/DFSForStrahler.java | 10 +++++----- .../java/org/javanetworkanalyzer/alg/Dijkstra.java | 10 +++++----- .../alg/DijkstraForAccessibility.java | 10 +++++----- .../alg/DijkstraForCentrality.java | 10 +++++----- .../alg/GraphSearchAlgorithm.java | 10 +++++----- .../org/javanetworkanalyzer/alg/TraversalAlg.java | 10 +++++----- .../analyzers/AccessibilityAnalyzer.java | 10 +++++----- .../analyzers/GeneralizedGraphAnalyzer.java | 10 +++++----- .../analyzers/GraphAnalyzer.java | 10 +++++----- .../analyzers/UnweightedGraphAnalyzer.java | 10 +++++----- .../analyzers/WeightedGraphAnalyzer.java | 10 +++++----- .../javanetworkanalyzer/data/PathLengthData.java | 10 +++++----- .../data/UnweightedPathLengthData.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VAccess.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VBFS.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VCent.java | 10 +++++----- .../org/javanetworkanalyzer/data/VCentImpl.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VDFS.java | 10 +++++----- .../org/javanetworkanalyzer/data/VDijkstra.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VDist.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VId.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VPred.java | 10 +++++----- .../org/javanetworkanalyzer/data/VPredImpl.java | 10 +++++----- .../org/javanetworkanalyzer/data/VStrahler.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VUCent.java | 10 +++++----- .../java/org/javanetworkanalyzer/data/VWCent.java | 10 +++++----- .../data/WeightedPathLengthData.java | 10 +++++----- .../graphcreators/GraphCreator.java | 10 +++++----- .../graphcreators/WeightedGraphCreator.java | 10 +++++----- .../javanetworkanalyzer/model/AsUndirectedG.java | 10 +++++----- .../model/AsUnweightedDirectedG.java | 10 +++++----- .../javanetworkanalyzer/model/AsUnweightedG.java | 10 +++++----- .../org/javanetworkanalyzer/model/DirectedG.java | 10 +++++----- .../javanetworkanalyzer/model/DirectedPseudoG.java | 10 +++++----- .../model/DirectedWeightedPseudoG.java | 10 +++++----- .../java/org/javanetworkanalyzer/model/Edge.java | 10 +++++----- .../org/javanetworkanalyzer/model/EdgeCent.java | 10 +++++----- .../java/org/javanetworkanalyzer/model/EdgeID.java | 10 +++++----- .../javanetworkanalyzer/model/EdgeReversedG.java | 10 +++++----- .../org/javanetworkanalyzer/model/EdgeSPT.java | 10 +++++----- .../org/javanetworkanalyzer/model/KeyedGraph.java | 10 +++++----- .../org/javanetworkanalyzer/model/PseudoG.java | 10 +++++----- .../javanetworkanalyzer/model/StrahlerTree.java | 10 +++++----- .../javanetworkanalyzer/model/TraversalGraph.java | 11 +++++------ .../org/javanetworkanalyzer/model/UndirectedG.java | 10 +++++----- .../model/WeightedEdgeReversedG.java | 10 +++++----- .../model/WeightedKeyedGraph.java | 10 +++++----- .../javanetworkanalyzer/model/WeightedPseudoG.java | 10 +++++----- .../progress/ConsoleProgressBar.java | 10 +++++----- .../progress/DefaultProgressMonitor.java | 10 +++++----- .../progress/NullProgressMonitor.java | 10 +++++----- .../progress/ProgressMonitor.java | 10 +++++----- .../org/javanetworkanalyzer/alg/BFSCormenTest.java | 10 +++++----- .../java/org/javanetworkanalyzer/alg/BFSTest.java | 11 +++++------ .../javanetworkanalyzer/alg/DFSRootNodeTest.java | 10 +++++----- .../java/org/javanetworkanalyzer/alg/DFSTest.java | 10 +++++----- .../alg/DijkstraCormenTest.java | 10 +++++----- .../DijkstraCormenUndirectedStarToStarTest.java | 10 +++++----- .../org/javanetworkanalyzer/alg/DijkstraTest.java | 10 +++++----- .../org/javanetworkanalyzer/alg/StrahlerTest.java | 11 +++++------ .../analyzers/AccessibilityAnalyzerTest.java | 10 +++++----- .../analyzers/CentralityTest.java | 11 +++++------ .../analyzers/GraphAnalyzerTest.java | 10 +++++----- .../ManuallyCreatedGraphAnalyzerTest.java | 10 +++++----- .../analyzers/examples/CormenAnalyzerTest.java | 14 +++++--------- .../analyzers/examples/ExampleGraphTest.java | 10 +++++----- .../analyzers/examples/Graph2DAnalyzerTest.java | 11 +++++------ .../graphcreators/CormenGraphPrep.java | 11 +++++------ .../graphcreators/Graph2DGraphCreatorTest.java | 10 +++++----- .../graphcreators/GraphPrep.java | 10 +++++----- 74 files changed, 371 insertions(+), 381 deletions(-) diff --git a/src/main/java/org/javanetworkanalyzer/alg/BFS.java b/src/main/java/org/javanetworkanalyzer/alg/BFS.java index 5e538f0..c42c820 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/BFS.java +++ b/src/main/java/org/javanetworkanalyzer/alg/BFS.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -49,7 +49,7 @@ /** * Root Breadth First Search (BFS) class. - *

+ * * The {@link #calculate} method can be overridden in subclasses in order to * do graph analysis (e.g., calculating betweenness centrality). * diff --git a/src/main/java/org/javanetworkanalyzer/alg/BFSForCentrality.java b/src/main/java/org/javanetworkanalyzer/alg/BFSForCentrality.java index 706730d..854744e 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/BFSForCentrality.java +++ b/src/main/java/org/javanetworkanalyzer/alg/BFSForCentrality.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/CentralityAlg.java b/src/main/java/org/javanetworkanalyzer/alg/CentralityAlg.java index 0b1cf84..8de0864 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/CentralityAlg.java +++ b/src/main/java/org/javanetworkanalyzer/alg/CentralityAlg.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/DFS.java b/src/main/java/org/javanetworkanalyzer/alg/DFS.java index 7b1a8fe..2f507ef 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/DFS.java +++ b/src/main/java/org/javanetworkanalyzer/alg/DFS.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/DFSForStrahler.java b/src/main/java/org/javanetworkanalyzer/alg/DFSForStrahler.java index a263126..5c8e83d 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/DFSForStrahler.java +++ b/src/main/java/org/javanetworkanalyzer/alg/DFSForStrahler.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/Dijkstra.java b/src/main/java/org/javanetworkanalyzer/alg/Dijkstra.java index b6db488..ccf1a9f 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/Dijkstra.java +++ b/src/main/java/org/javanetworkanalyzer/alg/Dijkstra.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/DijkstraForAccessibility.java b/src/main/java/org/javanetworkanalyzer/alg/DijkstraForAccessibility.java index c0aa1e3..ee2f838 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/DijkstraForAccessibility.java +++ b/src/main/java/org/javanetworkanalyzer/alg/DijkstraForAccessibility.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/DijkstraForCentrality.java b/src/main/java/org/javanetworkanalyzer/alg/DijkstraForCentrality.java index a102dbd..fd40cb4 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/DijkstraForCentrality.java +++ b/src/main/java/org/javanetworkanalyzer/alg/DijkstraForCentrality.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/GraphSearchAlgorithm.java b/src/main/java/org/javanetworkanalyzer/alg/GraphSearchAlgorithm.java index 9401e87..29c6ddd 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/GraphSearchAlgorithm.java +++ b/src/main/java/org/javanetworkanalyzer/alg/GraphSearchAlgorithm.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/alg/TraversalAlg.java b/src/main/java/org/javanetworkanalyzer/alg/TraversalAlg.java index 52f2b52..72ba16a 100644 --- a/src/main/java/org/javanetworkanalyzer/alg/TraversalAlg.java +++ b/src/main/java/org/javanetworkanalyzer/alg/TraversalAlg.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzer.java b/src/main/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzer.java index 35362b6..3c90cb4 100644 --- a/src/main/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzer.java +++ b/src/main/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzer.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/analyzers/GeneralizedGraphAnalyzer.java b/src/main/java/org/javanetworkanalyzer/analyzers/GeneralizedGraphAnalyzer.java index 13cc00f..347b4dd 100644 --- a/src/main/java/org/javanetworkanalyzer/analyzers/GeneralizedGraphAnalyzer.java +++ b/src/main/java/org/javanetworkanalyzer/analyzers/GeneralizedGraphAnalyzer.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/analyzers/GraphAnalyzer.java b/src/main/java/org/javanetworkanalyzer/analyzers/GraphAnalyzer.java index a19ac95..e3b24cf 100644 --- a/src/main/java/org/javanetworkanalyzer/analyzers/GraphAnalyzer.java +++ b/src/main/java/org/javanetworkanalyzer/analyzers/GraphAnalyzer.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/analyzers/UnweightedGraphAnalyzer.java b/src/main/java/org/javanetworkanalyzer/analyzers/UnweightedGraphAnalyzer.java index 733d5a8..1210dfc 100644 --- a/src/main/java/org/javanetworkanalyzer/analyzers/UnweightedGraphAnalyzer.java +++ b/src/main/java/org/javanetworkanalyzer/analyzers/UnweightedGraphAnalyzer.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/analyzers/WeightedGraphAnalyzer.java b/src/main/java/org/javanetworkanalyzer/analyzers/WeightedGraphAnalyzer.java index 30567e9..6104943 100644 --- a/src/main/java/org/javanetworkanalyzer/analyzers/WeightedGraphAnalyzer.java +++ b/src/main/java/org/javanetworkanalyzer/analyzers/WeightedGraphAnalyzer.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/PathLengthData.java b/src/main/java/org/javanetworkanalyzer/data/PathLengthData.java index 1bd8010..cf39101 100644 --- a/src/main/java/org/javanetworkanalyzer/data/PathLengthData.java +++ b/src/main/java/org/javanetworkanalyzer/data/PathLengthData.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/UnweightedPathLengthData.java b/src/main/java/org/javanetworkanalyzer/data/UnweightedPathLengthData.java index 190fe9f..c2d949c 100644 --- a/src/main/java/org/javanetworkanalyzer/data/UnweightedPathLengthData.java +++ b/src/main/java/org/javanetworkanalyzer/data/UnweightedPathLengthData.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VAccess.java b/src/main/java/org/javanetworkanalyzer/data/VAccess.java index 60d08b7..ee6cace 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VAccess.java +++ b/src/main/java/org/javanetworkanalyzer/data/VAccess.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VBFS.java b/src/main/java/org/javanetworkanalyzer/data/VBFS.java index cb75cde..237503e 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VBFS.java +++ b/src/main/java/org/javanetworkanalyzer/data/VBFS.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VCent.java b/src/main/java/org/javanetworkanalyzer/data/VCent.java index edfcdc2..2ad0860 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VCent.java +++ b/src/main/java/org/javanetworkanalyzer/data/VCent.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VCentImpl.java b/src/main/java/org/javanetworkanalyzer/data/VCentImpl.java index c297f18..aba9f75 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VCentImpl.java +++ b/src/main/java/org/javanetworkanalyzer/data/VCentImpl.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VDFS.java b/src/main/java/org/javanetworkanalyzer/data/VDFS.java index 92ed255..bf79c12 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VDFS.java +++ b/src/main/java/org/javanetworkanalyzer/data/VDFS.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VDijkstra.java b/src/main/java/org/javanetworkanalyzer/data/VDijkstra.java index 975a03c..64bc31e 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VDijkstra.java +++ b/src/main/java/org/javanetworkanalyzer/data/VDijkstra.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VDist.java b/src/main/java/org/javanetworkanalyzer/data/VDist.java index b0d6641..c13655f 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VDist.java +++ b/src/main/java/org/javanetworkanalyzer/data/VDist.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VId.java b/src/main/java/org/javanetworkanalyzer/data/VId.java index ecaf9ef..9baa073 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VId.java +++ b/src/main/java/org/javanetworkanalyzer/data/VId.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VPred.java b/src/main/java/org/javanetworkanalyzer/data/VPred.java index 2fc0828..89beb58 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VPred.java +++ b/src/main/java/org/javanetworkanalyzer/data/VPred.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VPredImpl.java b/src/main/java/org/javanetworkanalyzer/data/VPredImpl.java index 1aa8915..7961a53 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VPredImpl.java +++ b/src/main/java/org/javanetworkanalyzer/data/VPredImpl.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VStrahler.java b/src/main/java/org/javanetworkanalyzer/data/VStrahler.java index 8a26852..3f40a0c 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VStrahler.java +++ b/src/main/java/org/javanetworkanalyzer/data/VStrahler.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VUCent.java b/src/main/java/org/javanetworkanalyzer/data/VUCent.java index 525a32c..a53812a 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VUCent.java +++ b/src/main/java/org/javanetworkanalyzer/data/VUCent.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/VWCent.java b/src/main/java/org/javanetworkanalyzer/data/VWCent.java index 1f2549f..933a757 100644 --- a/src/main/java/org/javanetworkanalyzer/data/VWCent.java +++ b/src/main/java/org/javanetworkanalyzer/data/VWCent.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/data/WeightedPathLengthData.java b/src/main/java/org/javanetworkanalyzer/data/WeightedPathLengthData.java index b386b6f..db4cc0e 100644 --- a/src/main/java/org/javanetworkanalyzer/data/WeightedPathLengthData.java +++ b/src/main/java/org/javanetworkanalyzer/data/WeightedPathLengthData.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/graphcreators/GraphCreator.java b/src/main/java/org/javanetworkanalyzer/graphcreators/GraphCreator.java index 5531913..f3ccd42 100644 --- a/src/main/java/org/javanetworkanalyzer/graphcreators/GraphCreator.java +++ b/src/main/java/org/javanetworkanalyzer/graphcreators/GraphCreator.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/graphcreators/WeightedGraphCreator.java b/src/main/java/org/javanetworkanalyzer/graphcreators/WeightedGraphCreator.java index 4a757f0..c3ad445 100644 --- a/src/main/java/org/javanetworkanalyzer/graphcreators/WeightedGraphCreator.java +++ b/src/main/java/org/javanetworkanalyzer/graphcreators/WeightedGraphCreator.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/AsUndirectedG.java b/src/main/java/org/javanetworkanalyzer/model/AsUndirectedG.java index 93976d1..a9ccd95 100644 --- a/src/main/java/org/javanetworkanalyzer/model/AsUndirectedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/AsUndirectedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/AsUnweightedDirectedG.java b/src/main/java/org/javanetworkanalyzer/model/AsUnweightedDirectedG.java index 22508f0..d533e94 100644 --- a/src/main/java/org/javanetworkanalyzer/model/AsUnweightedDirectedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/AsUnweightedDirectedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/AsUnweightedG.java b/src/main/java/org/javanetworkanalyzer/model/AsUnweightedG.java index f6be555..0a5ef16 100644 --- a/src/main/java/org/javanetworkanalyzer/model/AsUnweightedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/AsUnweightedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/DirectedG.java b/src/main/java/org/javanetworkanalyzer/model/DirectedG.java index f1bc64e..ed56788 100644 --- a/src/main/java/org/javanetworkanalyzer/model/DirectedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/DirectedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/DirectedPseudoG.java b/src/main/java/org/javanetworkanalyzer/model/DirectedPseudoG.java index c1365df..9da5829 100644 --- a/src/main/java/org/javanetworkanalyzer/model/DirectedPseudoG.java +++ b/src/main/java/org/javanetworkanalyzer/model/DirectedPseudoG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/DirectedWeightedPseudoG.java b/src/main/java/org/javanetworkanalyzer/model/DirectedWeightedPseudoG.java index 7f8010e..0a4c3bd 100644 --- a/src/main/java/org/javanetworkanalyzer/model/DirectedWeightedPseudoG.java +++ b/src/main/java/org/javanetworkanalyzer/model/DirectedWeightedPseudoG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/Edge.java b/src/main/java/org/javanetworkanalyzer/model/Edge.java index 8027b93..271038d 100644 --- a/src/main/java/org/javanetworkanalyzer/model/Edge.java +++ b/src/main/java/org/javanetworkanalyzer/model/Edge.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/EdgeCent.java b/src/main/java/org/javanetworkanalyzer/model/EdgeCent.java index 288ca6c..ff72baf 100644 --- a/src/main/java/org/javanetworkanalyzer/model/EdgeCent.java +++ b/src/main/java/org/javanetworkanalyzer/model/EdgeCent.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/EdgeID.java b/src/main/java/org/javanetworkanalyzer/model/EdgeID.java index fda2488..fc9c8e2 100644 --- a/src/main/java/org/javanetworkanalyzer/model/EdgeID.java +++ b/src/main/java/org/javanetworkanalyzer/model/EdgeID.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/EdgeReversedG.java b/src/main/java/org/javanetworkanalyzer/model/EdgeReversedG.java index 9a16e75..9fc14a3 100644 --- a/src/main/java/org/javanetworkanalyzer/model/EdgeReversedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/EdgeReversedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/EdgeSPT.java b/src/main/java/org/javanetworkanalyzer/model/EdgeSPT.java index 72cbbb1..a927056 100644 --- a/src/main/java/org/javanetworkanalyzer/model/EdgeSPT.java +++ b/src/main/java/org/javanetworkanalyzer/model/EdgeSPT.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/KeyedGraph.java b/src/main/java/org/javanetworkanalyzer/model/KeyedGraph.java index 7c023cb..77914b7 100644 --- a/src/main/java/org/javanetworkanalyzer/model/KeyedGraph.java +++ b/src/main/java/org/javanetworkanalyzer/model/KeyedGraph.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/PseudoG.java b/src/main/java/org/javanetworkanalyzer/model/PseudoG.java index cee55f3..481f7e8 100644 --- a/src/main/java/org/javanetworkanalyzer/model/PseudoG.java +++ b/src/main/java/org/javanetworkanalyzer/model/PseudoG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/StrahlerTree.java b/src/main/java/org/javanetworkanalyzer/model/StrahlerTree.java index 4ac7487..eafdc69 100644 --- a/src/main/java/org/javanetworkanalyzer/model/StrahlerTree.java +++ b/src/main/java/org/javanetworkanalyzer/model/StrahlerTree.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/TraversalGraph.java b/src/main/java/org/javanetworkanalyzer/model/TraversalGraph.java index 3434d47..a68a92c 100644 --- a/src/main/java/org/javanetworkanalyzer/model/TraversalGraph.java +++ b/src/main/java/org/javanetworkanalyzer/model/TraversalGraph.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -41,7 +41,6 @@ import org.jgrapht.EdgeFactory; import org.jgrapht.graph.DirectedMultigraph; -import org.jgrapht.graph.SimpleDirectedGraph; /** * A simple directed graph for shortest path "trees" (multiple shortest paths diff --git a/src/main/java/org/javanetworkanalyzer/model/UndirectedG.java b/src/main/java/org/javanetworkanalyzer/model/UndirectedG.java index a133f12..9a39fca 100644 --- a/src/main/java/org/javanetworkanalyzer/model/UndirectedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/UndirectedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/WeightedEdgeReversedG.java b/src/main/java/org/javanetworkanalyzer/model/WeightedEdgeReversedG.java index 571c59e..e7ebf41 100644 --- a/src/main/java/org/javanetworkanalyzer/model/WeightedEdgeReversedG.java +++ b/src/main/java/org/javanetworkanalyzer/model/WeightedEdgeReversedG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/WeightedKeyedGraph.java b/src/main/java/org/javanetworkanalyzer/model/WeightedKeyedGraph.java index 1ccd0cf..8c5d04b 100644 --- a/src/main/java/org/javanetworkanalyzer/model/WeightedKeyedGraph.java +++ b/src/main/java/org/javanetworkanalyzer/model/WeightedKeyedGraph.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/model/WeightedPseudoG.java b/src/main/java/org/javanetworkanalyzer/model/WeightedPseudoG.java index 8496260..71aea3d 100644 --- a/src/main/java/org/javanetworkanalyzer/model/WeightedPseudoG.java +++ b/src/main/java/org/javanetworkanalyzer/model/WeightedPseudoG.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/progress/ConsoleProgressBar.java b/src/main/java/org/javanetworkanalyzer/progress/ConsoleProgressBar.java index bcde0d3..fc1e080 100644 --- a/src/main/java/org/javanetworkanalyzer/progress/ConsoleProgressBar.java +++ b/src/main/java/org/javanetworkanalyzer/progress/ConsoleProgressBar.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/progress/DefaultProgressMonitor.java b/src/main/java/org/javanetworkanalyzer/progress/DefaultProgressMonitor.java index 6be3e92..bf4dbeb 100644 --- a/src/main/java/org/javanetworkanalyzer/progress/DefaultProgressMonitor.java +++ b/src/main/java/org/javanetworkanalyzer/progress/DefaultProgressMonitor.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/progress/NullProgressMonitor.java b/src/main/java/org/javanetworkanalyzer/progress/NullProgressMonitor.java index c22af37..5bba5c5 100644 --- a/src/main/java/org/javanetworkanalyzer/progress/NullProgressMonitor.java +++ b/src/main/java/org/javanetworkanalyzer/progress/NullProgressMonitor.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/main/java/org/javanetworkanalyzer/progress/ProgressMonitor.java b/src/main/java/org/javanetworkanalyzer/progress/ProgressMonitor.java index e801710..daca855 100644 --- a/src/main/java/org/javanetworkanalyzer/progress/ProgressMonitor.java +++ b/src/main/java/org/javanetworkanalyzer/progress/ProgressMonitor.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/BFSCormenTest.java b/src/test/java/org/javanetworkanalyzer/alg/BFSCormenTest.java index 6e61333..de0ce0d 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/BFSCormenTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/BFSCormenTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/BFSTest.java b/src/test/java/org/javanetworkanalyzer/alg/BFSTest.java index 7fa6458..56aa697 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/BFSTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/BFSTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -45,7 +45,6 @@ import org.javanetworkanalyzer.model.Edge; import org.javanetworkanalyzer.model.TraversalGraph; import org.junit.Test; -import static org.junit.Assert.assertTrue; /** * Tests the BFS algorithm to calculate distances from a given source vertex. diff --git a/src/test/java/org/javanetworkanalyzer/alg/DFSRootNodeTest.java b/src/test/java/org/javanetworkanalyzer/alg/DFSRootNodeTest.java index 2880398..38708f9 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/DFSRootNodeTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/DFSRootNodeTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/DFSTest.java b/src/test/java/org/javanetworkanalyzer/alg/DFSTest.java index 46f73a1..79c0e24 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/DFSTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/DFSTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenTest.java b/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenTest.java index 61e7744..3f5d71d 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenUndirectedStarToStarTest.java b/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenUndirectedStarToStarTest.java index f881589..79d881f 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenUndirectedStarToStarTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/DijkstraCormenUndirectedStarToStarTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/DijkstraTest.java b/src/test/java/org/javanetworkanalyzer/alg/DijkstraTest.java index 068d681..81b56b1 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/DijkstraTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/DijkstraTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/alg/StrahlerTest.java b/src/test/java/org/javanetworkanalyzer/alg/StrahlerTest.java index 1d0c441..cadc61c 100644 --- a/src/test/java/org/javanetworkanalyzer/alg/StrahlerTest.java +++ b/src/test/java/org/javanetworkanalyzer/alg/StrahlerTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -46,7 +46,6 @@ import java.util.Arrays; import java.util.HashSet; import java.util.Set; -import org.jgrapht.graph.DefaultEdge; import org.junit.Test; import static org.junit.Assert.assertEquals; diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzerTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzerTest.java index c6e3a46..988a95c 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzerTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/AccessibilityAnalyzerTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/CentralityTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/CentralityTest.java index c08e82c..e779c18 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/CentralityTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/CentralityTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -39,7 +39,6 @@ */ package org.javanetworkanalyzer.analyzers; -import junit.framework.TestCase; import org.javanetworkanalyzer.data.VCent; import org.javanetworkanalyzer.model.Edge; import org.jgrapht.Graph; diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/GraphAnalyzerTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/GraphAnalyzerTest.java index 8e67013..01adb21 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/GraphAnalyzerTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/GraphAnalyzerTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/ManuallyCreatedGraphAnalyzerTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/ManuallyCreatedGraphAnalyzerTest.java index dd238c3..5067002 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/ManuallyCreatedGraphAnalyzerTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/ManuallyCreatedGraphAnalyzerTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/examples/CormenAnalyzerTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/examples/CormenAnalyzerTest.java index 695bb2a..82b0f50 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/examples/CormenAnalyzerTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/examples/CormenAnalyzerTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -40,16 +40,12 @@ package org.javanetworkanalyzer.analyzers.examples; import org.javanetworkanalyzer.analyzers.ManuallyCreatedGraphAnalyzerTest; -import org.javanetworkanalyzer.analyzers.WeightedGraphAnalyzer; import org.javanetworkanalyzer.data.VCent; import org.javanetworkanalyzer.data.VUCent; import org.javanetworkanalyzer.data.VWCent; -import org.javanetworkanalyzer.graphcreators.GraphCreator; -import org.javanetworkanalyzer.graphcreators.WeightedGraphCreator; import org.javanetworkanalyzer.model.*; import org.javanetworkanalyzer.progress.NullProgressMonitor; import org.javanetworkanalyzer.progress.ProgressMonitor; -import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.assertEquals; diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/examples/ExampleGraphTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/examples/ExampleGraphTest.java index addd854..e547c8e 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/examples/ExampleGraphTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/examples/ExampleGraphTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/analyzers/examples/Graph2DAnalyzerTest.java b/src/test/java/org/javanetworkanalyzer/analyzers/examples/Graph2DAnalyzerTest.java index 23eaec5..45d41d1 100644 --- a/src/test/java/org/javanetworkanalyzer/analyzers/examples/Graph2DAnalyzerTest.java +++ b/src/test/java/org/javanetworkanalyzer/analyzers/examples/Graph2DAnalyzerTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -43,7 +43,6 @@ import org.javanetworkanalyzer.data.VUCent; import org.javanetworkanalyzer.data.VWCent; import org.javanetworkanalyzer.model.DirectedG; -import org.javanetworkanalyzer.model.Edge; import org.javanetworkanalyzer.model.EdgeCent; import org.javanetworkanalyzer.model.UndirectedG; import org.javanetworkanalyzer.progress.NullProgressMonitor; diff --git a/src/test/java/org/javanetworkanalyzer/graphcreators/CormenGraphPrep.java b/src/test/java/org/javanetworkanalyzer/graphcreators/CormenGraphPrep.java index cdf10f2..cd4797d 100644 --- a/src/test/java/org/javanetworkanalyzer/graphcreators/CormenGraphPrep.java +++ b/src/test/java/org/javanetworkanalyzer/graphcreators/CormenGraphPrep.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: @@ -41,7 +41,6 @@ import org.javanetworkanalyzer.data.VAccess; import org.javanetworkanalyzer.model.DirectedWeightedPseudoG; -import org.javanetworkanalyzer.model.Edge; import org.javanetworkanalyzer.model.EdgeCent; /** diff --git a/src/test/java/org/javanetworkanalyzer/graphcreators/Graph2DGraphCreatorTest.java b/src/test/java/org/javanetworkanalyzer/graphcreators/Graph2DGraphCreatorTest.java index 2ec992c..730488e 100644 --- a/src/test/java/org/javanetworkanalyzer/graphcreators/Graph2DGraphCreatorTest.java +++ b/src/test/java/org/javanetworkanalyzer/graphcreators/Graph2DGraphCreatorTest.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: diff --git a/src/test/java/org/javanetworkanalyzer/graphcreators/GraphPrep.java b/src/test/java/org/javanetworkanalyzer/graphcreators/GraphPrep.java index 19a0adf..c0d8231 100644 --- a/src/test/java/org/javanetworkanalyzer/graphcreators/GraphPrep.java +++ b/src/test/java/org/javanetworkanalyzer/graphcreators/GraphPrep.java @@ -15,22 +15,22 @@ * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * - * Java Network Analyzer is distributed under GPL 3 license. + * Java Network Analyzer is distributed under LGPL 3 license. * * Copyright (C) 2012-2014 CNRS (IRSTV CNRS FR 2488) - * Copyright (C) 2015-2017 CNRS (Lab-STICC CNRS UMR 6285) + * Copyright (C) 2015-2018 CNRS (Lab-STICC CNRS UMR 6285) * * Java Network Analyzer is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by the Free + * it under the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * Java Network Analyzer is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the GNU Lesser General Public License along with * Java Network Analyzer. If not, see . * * For more information, please consult: From 50689b2c5096f83ce6cbb2607ba5a98f89c21efc Mon Sep 17 00:00:00 2001 From: ebocher Date: Thu, 20 Sep 2018 22:06:00 +0200 Subject: [PATCH 3/7] Update to jgrapht 1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3f1225e..0f903a0 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ org.jgrapht jgrapht-core - 0.9.0 + 1.0.0 org.slf4j From a6e9f1425f695fadb83591541b962cf3ef495f3e Mon Sep 17 00:00:00 2001 From: ebocher Date: Fri, 21 Sep 2018 12:19:40 +0200 Subject: [PATCH 4/7] Update to 1.0.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0f903a0..2031cff 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ org.jgrapht jgrapht-core - 1.0.0 + 1.0.1 org.slf4j From b569ab8459b2bc2d56d6231084deed4bcc94c5cc Mon Sep 17 00:00:00 2001 From: ebocher Date: Fri, 21 Sep 2018 12:25:06 +0200 Subject: [PATCH 5/7] Remove java config --- pom.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pom.xml b/pom.xml index 2031cff..e926d96 100644 --- a/pom.xml +++ b/pom.xml @@ -87,10 +87,6 @@ org.apache.maven.plugins maven-compiler-plugin 2.3.2 - - 1.6 - 1.6 - maven-assembly-plugin From 7e3260df0f61d3b433ac57871cc69098a648e85e Mon Sep 17 00:00:00 2001 From: ebocher Date: Tue, 25 Sep 2018 17:34:48 +0200 Subject: [PATCH 6/7] Compile with JAVA 8 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4341829..16205ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,3 @@ language: java jdk: - - openjdk7 + - openjdk8 From f6075242d20033c8f4621ac9444b6853b5980b29 Mon Sep 17 00:00:00 2001 From: ebocher Date: Wed, 26 Sep 2018 09:22:58 +0200 Subject: [PATCH 7/7] Use Jgrapht 0.9.2 due to java version --- .travis.yml | 2 +- pom.xml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 16205ac..4341829 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,3 @@ language: java jdk: - - openjdk8 + - openjdk7 diff --git a/pom.xml b/pom.xml index e926d96..776cd18 100644 --- a/pom.xml +++ b/pom.xml @@ -35,6 +35,8 @@ UTF-8 + 1.7 + 1.7 org.orbisgis @@ -52,7 +54,7 @@ org.jgrapht jgrapht-core - 1.0.1 + 0.9.2 org.slf4j