Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1a15a53a authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- cleaned up comments

parent f5a711d9
No related branches found
No related tags found
No related merge requests found
...@@ -508,8 +508,8 @@ public class GenPlot { ...@@ -508,8 +508,8 @@ public class GenPlot {
output.println("&chds=0,10\"/>"); output.println("&chds=0,10\"/>");
} }
// 2010: THIS IS ONLY FOR TSV AND THIS DOES NOT WORK // 2010: TSV output is not finished
// IT IS SUPPOSED TO PROVIDE // It is supposed to provide
// List of algo // List of algo
// List of STEP + points // List of STEP + points
public void printTSV( Vector<Vector<Pair>> points ) { public void printTSV( Vector<Vector<Pair>> points ) {
...@@ -522,7 +522,7 @@ public class GenPlot { ...@@ -522,7 +522,7 @@ public class GenPlot {
for( int j = 0; j < size; j++ ){ for( int j = 0; j < size; j++ ){
Pair precrec = points.get(j).get(i); Pair precrec = points.get(j).get(i);
output.println( precrec.getX()+" "+precrec.getY() ); output.println( precrec.getX()+" "+precrec.getY() );
} }
} }
output.println(); output.println();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment