mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10304
This commit is contained in:
parent
36333729f8
commit
fb338265a0
|
@ -5809,3 +5809,10 @@ Bruce 10 June 2006
|
|||
validate_util2.C
|
||||
file_deleter.C
|
||||
|
||||
David
|
||||
- tweaks
|
||||
|
||||
sched/
|
||||
make_work.C
|
||||
validate_util.C,h
|
||||
validate_util2.C
|
||||
|
|
|
@ -295,7 +295,6 @@ int main(int argc, char** argv) {
|
|||
} else if (!strcmp(argv[i], "-d")) {
|
||||
log_messages.set_debug_level(atoi(argv[++i]));
|
||||
} else if (!strcmp(argv[i], "-wu_name")) {
|
||||
char wu_name[256];
|
||||
wu_names.push_back(string(argv[++i]));
|
||||
} else if (!strcmp(argv[i], "-max_wus")) {
|
||||
max_wus = atoi(argv[++i]);
|
||||
|
|
|
@ -32,13 +32,12 @@
|
|||
#include "sched_util.h"
|
||||
#include "sched_config.h"
|
||||
#include "sched_msgs.h"
|
||||
#include "validator.h"
|
||||
#include "validate_util.h"
|
||||
|
||||
using std::vector;
|
||||
using std::string;
|
||||
|
||||
extern SCHED_CONFIG config;
|
||||
|
||||
// get the name of a result's (first) output file
|
||||
//
|
||||
int get_output_file_path(RESULT const& result, string& path_str) {
|
||||
|
|
|
@ -20,10 +20,11 @@
|
|||
#ifndef H_VALIDATE_UTIL
|
||||
#define H_VALIDATE_UTIL
|
||||
|
||||
#include "boinc_db.h"
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
#include "boinc_db.h"
|
||||
|
||||
extern int get_output_file_path(RESULT const& result, std::string& path);
|
||||
extern double median_mean_credit(std::vector<RESULT>& results);
|
||||
|
||||
|
|
|
@ -30,13 +30,12 @@
|
|||
#include "sched_config.h"
|
||||
#include "sched_msgs.h"
|
||||
|
||||
#include "validator.h"
|
||||
#include "validate_util.h"
|
||||
#include "validate_util2.h"
|
||||
|
||||
using std::vector;
|
||||
|
||||
extern SCHED_CONFIG config;
|
||||
|
||||
int check_set(
|
||||
vector<RESULT>& results, WORKUNIT& wu, int& canonicalid, double& credit,
|
||||
bool& retry
|
||||
|
|
Loading…
Reference in New Issue