Skip to content

Instantly share code, notes, and snippets.

@brunocalou
Created February 21, 2016 14:15
Show Gist options
  • Save brunocalou/455404f322d713cb5aaf to your computer and use it in GitHub Desktop.
Save brunocalou/455404f322d713cb5aaf to your computer and use it in GitHub Desktop.
~/GraphTea  ./make.sh
Buildfile: /home/bruno/GraphTea/build.xml
clean:
[delete] Deleting directory /home/bruno/GraphTea/binary
[delete] Deleting directory /home/bruno/GraphTea/build
BUILD SUCCESSFUL
Total time: 0 seconds
Buildfile: /home/bruno/GraphTea/build.xml
depends:
[mkdir] Created dir: /home/bruno/GraphTea/build
[mkdir] Created dir: /home/bruno/GraphTea/binary
[mkdir] Created dir: /home/bruno/GraphTea/binary/lib
[mkdir] Created dir: /home/bruno/GraphTea/binary/plugins
[mkdir] Created dir: /home/bruno/GraphTea/binary/extensions
compile:
[javac] /home/bruno/GraphTea/build.xml:67: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
[javac] Compiling 665 source files to /home/bruno/GraphTea/build
[javac] /home/bruno/GraphTea/src/graphtea/extensions/io/LoadSimpleGraph.java:72: warning: '_' used as an identifier
[javac] String _, s = "";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:40: warning: '_' used as an identifier
[javac] for (BaseVertex _ : g.getVertexArray()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:41: warning: '_' used as an identifier
[javac] v.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:53: warning: '_' used as an identifier
[javac] for (BaseVertex _ : g.getVertexArray()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:54: warning: '_' used as an identifier
[javac] v.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:167: warning: '_' used as an identifier
[javac] for (BaseVertex _ : g.getVertexArray()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:168: warning: '_' used as an identifier
[javac] v.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:216: warning: '_' used as an identifier
[javac] BaseVertex _ = v.removeFirst();
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:219: warning: '_' used as an identifier
[javac] for (int i : edgeArray[_.getId()]) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:226: warning: '_' used as an identifier
[javac] color[_.getId()] = t;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:227: warning: '_' used as an identifier
[javac] set.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:229: warning: '_' used as an identifier
[javac] set.remove(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:232: warning: '_' used as an identifier
[javac] color[_.getId()] = 0;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:233: warning: '_' used as an identifier
[javac] complement.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:235: warning: '_' used as an identifier
[javac] complement.remove(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/Partitioner.java:236: warning: '_' used as an identifier
[javac] v.addFirst(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:209: warning: '_' used as an identifier
[javac] Edge _[] = new Edge[s.length + 2];
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:210: warning: '_' used as an identifier
[javac] System.arraycopy(s, 0, _, 0, s.length);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:211: warning: '_' used as an identifier
[javac] _[s.length] = e;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:212: warning: '_' used as an identifier
[javac] _[s.length + 1] = fakeEdge; //make it a little more larger for better performance, similar to Vectors
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:213: warning: '_' used as an identifier
[javac] edgesGrid[ix][iy] = _;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:230: warning: '_' used as an identifier
[javac] Vertex[] _ = new Vertex[s.length + 2];
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:231: warning: '_' used as an identifier
[javac] System.arraycopy(s, 0, _, 0, s.length);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:232: warning: '_' used as an identifier
[javac] _[s.length] = v;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:233: warning: '_' used as an identifier
[javac] _[s.length + 1] = fakeVertex; //make it a little more larger for better performance, similar to Vectors
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphControlGrid.java:234: warning: '_' used as an identifier
[javac] verticesGrid[ix][iy] = _;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphModel.java:422: warning: '_' used as an identifier
[javac] for (Edge _ : edges)
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/graph/GraphModel.java:423: warning: '_' used as an identifier
[javac] insertEdge(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/old/GStroke.java:64: warning: '_' used as an identifier
[javac] for (GStroke _ : strokes)
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/old/GStroke.java:65: warning: '_' used as an identifier
[javac] if (_.name.equals(data)) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/graph/old/GStroke.java:66: warning: '_' used as an identifier
[javac] return _;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/library/algorithms/shortestpath/AcyclicSP.java:44: warning: '_' used as an identifier
[javac] for (VertexType _ : gcopy)
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/library/algorithms/shortestpath/AcyclicSP.java:45: warning: '_' used as an identifier
[javac] t.put(_.getId(), _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/library/algorithms/shortestpath/AcyclicSP.java:45: warning: '_' used as an identifier
[javac] t.put(_.getId(), _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/library/algorithms/shortestpath/AcyclicSP.java:46: warning: '_' used as an identifier
[javac] for (VertexType _ : g)
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/library/algorithms/shortestpath/AcyclicSP.java:47: warning: '_' used as an identifier
[javac] gcopy2g.put(t.get(_.getId()), _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/library/algorithms/shortestpath/AcyclicSP.java:47: warning: '_' used as an identifier
[javac] gcopy2g.put(t.get(_.getId()), _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/platform/extension/ExtensionLoader.java:127: warning: '_' used as an identifier
[javac] for (UnknownExtensionLoader _ : registeredUnknownExtensionLoaders) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/platform/extension/ExtensionLoader.java:128: warning: '_' used as an identifier
[javac] Extension extension = _.load(unknownFile, blackboard);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/platform/lang/SetValidator.java:18: warning: '_' used as an identifier
[javac] for (t _ : o) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/platform/lang/SetValidator.java:19: warning: '_' used as an identifier
[javac] vals.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/algorithmanimator/core/AlgorithmAnimator.java:59: warning: '_' used as an identifier
[javac] for (AtomAnimator _ : animators)
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/algorithmanimator/core/AlgorithmAnimator.java:60: warning: '_' used as an identifier
[javac] if (_.isAnimatable(ae)) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/algorithmanimator/core/AlgorithmAnimator.java:61: warning: '_' used as an identifier
[javac] return _.animate(ae, blackboard);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/commonplugin/reporter/ReportUIAction.java:27: warning: '_' used as an identifier
[javac] for (StackTraceElement _ : ee) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/commonplugin/reporter/ReportUIAction.java:28: warning: '_' used as an identifier
[javac] s += "\tat " + _.toString() + "\n";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:169: warning: '_' used as an identifier
[javac] for (VertexType _ : getNeighbors(g, v)) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:170: warning: '_' used as an identifier
[javac] if (_ == dest) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:174: warning: '_' used as an identifier
[javac] if (!_.getMark()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:175: warning: '_' used as an identifier
[javac] q.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:176: warning: '_' used as an identifier
[javac] _.setMark(true);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:177: warning: '_' used as an identifier
[javac] parents[_.getId()] = v;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:189: warning: '_' used as an identifier
[javac] int _ = dest.getId();
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:191: warning: '_' used as an identifier
[javac] while (_ != source.getId()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:194: warning: '_' used as an identifier
[javac] ret.insert((VertexType) parents[_]);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:195: warning: '_' used as an identifier
[javac] if (parents[_] == null)
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:197: warning: '_' used as an identifier
[javac] _ = parents[_].getId();
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:197: warning: '_' used as an identifier
[javac] _ = parents[_].getId();
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:216: warning: '_' used as an identifier
[javac] for (VertexType _ : g) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:217: warning: '_' used as an identifier
[javac] _.setMark(false);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:234: warning: '_' used as an identifier
[javac] for (Vertex _ : pathToRoot) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:235: warning: '_' used as an identifier
[javac] _.setMark(true);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:307: warning: '_' used as an identifier
[javac] for (Vertex _ : unRootedTree.getNeighbors(v)) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:308: warning: '_' used as an identifier
[javac] if (!_.getMark()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:309: warning: '_' used as an identifier
[javac] q.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:310: warning: '_' used as an identifier
[javac] ret.add(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:311: warning: '_' used as an identifier
[javac] _.setMark(true);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:312: warning: '_' used as an identifier
[javac] _.getProp().obj = ((Integer) v.getProp().obj) + 1; //set the distance
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:314: warning: '_' used as an identifier
[javac] listener.visit(_, v);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:356: warning: '_' used as an identifier
[javac] for (Vertex _ : componentVertices) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:357: warning: '_' used as an identifier
[javac] if (_.getId() < v.getId()) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/AlgorithmUtils.java:358: warning: '_' used as an identifier
[javac] rootCandidate = _;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:109: warning: '_' used as an identifier
[javac] Vertex _ = knownLogs.get(name);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:110: warning: '_' used as an identifier
[javac] if (_ == null || !g.containsVertex(_)) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:110: warning: '_' used as an identifier
[javac] if (_ == null || !g.containsVertex(_)) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:111: warning: '_' used as an identifier
[javac] _ = addVertex();
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:112: warning: '_' used as an identifier
[javac] _.setLabel(name);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:113: warning: '_' used as an identifier
[javac] _.setColor(2);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:114: warning: '_' used as an identifier
[javac] knownLogs.put(name, _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/BlackBoardWatcher.java:116: warning: '_' used as an identifier
[javac] return _;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:53: warning: '_' used as an identifier
[javac] GraphPoint _ = new GraphPoint(vmd.mousePos);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:55: warning: '_' used as an identifier
[javac] _.x += loc.x - x1;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:56: warning: '_' used as an identifier
[javac] _.y += loc.y - y1;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:57: warning: '_' used as an identifier
[javac] vmd.v.setLocation(_);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:66: warning: '_' used as an identifier
[javac] GraphPoint _ = new GraphPoint(vdrod.mousePos);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:68: warning: '_' used as an identifier
[javac] _.x += vdrod.mousePos.x + loc.x - x1;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:69: warning: '_' used as an identifier
[javac] _.y += vdrod.mousePos.y + loc.y - y1;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/core/actions/vertex/VertexMoveEvent.java:70: warning: '_' used as an identifier
[javac] vmd.newPosition = _;
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/LoadMatrix.java:60: warning: '_' used as an identifier
[javac] String _, s = "";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/LoadMatrix.java:61: warning: '_' used as an identifier
[javac] while ((_ = br.readLine()) != null) s += _ + "\n";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/LoadMatrix.java:61: warning: '_' used as an identifier
[javac] while ((_ = br.readLine()) != null) s += _ + "\n";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/LoadMatrix.java:70: warning: '_' used as an identifier
[javac] String _, s = "";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/LoadMatrix.java:71: warning: '_' used as an identifier
[javac] while ((_ = br.readLine()) != null) s += _ + "\n";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/LoadMatrix.java:71: warning: '_' used as an identifier
[javac] while ((_ = br.readLine()) != null) s += _ + "\n";
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/Matrix.java:32: warning: '_' used as an identifier
[javac] for (vt _ : g) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/Matrix.java:33: warning: '_' used as an identifier
[javac] m.put(i++, _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/Matrix.java:53: warning: '_' used as an identifier
[javac] for (vt _ : g) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/Matrix.java:54: warning: '_' used as an identifier
[javac] m.put(i++, _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/Matrix.java:67: warning: '_' used as an identifier
[javac] for (vt _ : g) {
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/plugins/main/saveload/matrix/Matrix.java:68: warning: '_' used as an identifier
[javac] m.put(i++, _);
[javac] ^
[javac] (use of '_' as an identifier might not be supported in releases after Java SE 8)
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/coloring/fillinaware/FillinAwareColoring.java:79: error: cannot find symbol
[javac] public ColInf computeOneMatrix(SpMat mm, String ordILU,String ordCol,int k) {
[javac] ^
[javac] symbol: class ColInf
[javac] location: class FillinAwareColoring
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/coloring/fillinaware/HCol.java:3: error: package graphtea.extensions.reports.coloring.fillinaware.metis does not exist
[javac] import graphtea.extensions.reports.coloring.fillinaware.metis.NDMetis;
[javac] ^
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/coloring/fillinaware/FillinAwareColoring.java:71: error: cannot find symbol
[javac] ColInf cinf = computeOneMatrix(sm,ordILU,ordCol,k);
[javac] ^
[javac] symbol: class ColInf
[javac] location: class FillinAwareColoring
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/coloring/fillinaware/FillinAwareColoring.java:93: error: cannot find symbol
[javac] return new ColInf(block.rows(),block.nnz(),F,C,P,add);
[javac] ^
[javac] symbol: class ColInf
[javac] location: class FillinAwareColoring
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/coloring/fillinaware/HCol.java:49: error: cannot find symbol
[javac] NDMetis nd = new NDMetis("MetisGraph",g);
[javac] ^
[javac] symbol: class NDMetis
[javac] location: class HCol
[javac] /home/bruno/GraphTea/src/graphtea/extensions/reports/coloring/fillinaware/HCol.java:49: error: cannot find symbol
[javac] NDMetis nd = new NDMetis("MetisGraph",g);
[javac] ^
[javac] symbol: class NDMetis
[javac] location: class HCol
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 6 errors
[javac] 100 warnings
BUILD FAILED
/home/bruno/GraphTea/build.xml:67: Compile failed; see the compiler error output for details.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment