示例#1
0
 //Writes the result to a file using the result, and the function that was tested as the
 //start of the file name
 public static void writeBatchTestingResult(List <Tuple <string, double> > result, string functionName)
 {
     XMLParser.writeBatchResult(result, functionName);
 }
示例#2
0
 //Wrapper for XML call to save custom plot points with no specified file name
 public static void saveRecordedPoints(List <PointD> points, string functionName)
 {
     XMLParser.savePlotPoints(points, functionName);
 }