Changes between Version 16 and Version 17 of ValidationSimple


Ignore:
Timestamp:
Sep 14, 2011, 12:44:00 PM (13 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ValidationSimple

    v16 v17  
    1 = The validator framework =
     1= Developing a custom validator =
    22
    33To create a validator using the BOINC framework, you must supply three functions:
     
    55extern int init_result(RESULT& result, void*& data);
    66}}}
    7 This takes a result, reads its output file(s), parses them into a memory structure, and returns (via the 'data' argument) a pointer to this structure.
     7This takes a result, reads its output file(s), parses them into a memory structure,
     8and returns (via the 'data' argument) a pointer to this structure.
    89It returns:
    910
     
    2021);
    2122}}}
    22 This takes two results and their associated memory structures. It returns (via the 'match' argument) true if the two results are equivalent (within the tolerances of the application).
     23This takes two results and their associated memory structures.
     24It returns (via the 'match' argument) true if the two results are equivalent (within the tolerances of the application).
    2325{{{
    2426extern int cleanup_result(RESULT& r, void* data);