2004-02-09 05:11:05 +00:00
|
|
|
<?
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Result assimilation");
|
|
|
|
echo "
|
|
|
|
Projects must create one assimilator program per application.
|
|
|
|
This is best done by linking the program <b>sched/assimilate.C</b>
|
|
|
|
with an application-specific function of the form
|
|
|
|
<pre>
|
|
|
|
int assimilate_handler(
|
2004-02-12 01:13:47 +00:00
|
|
|
WORKUNIT& wu, vector<RESULT>& results, RESULT& canononical_result
|
2004-02-09 05:11:05 +00:00
|
|
|
);
|
2004-02-12 01:13:47 +00:00
|
|
|
</pre>
|
2004-02-09 05:11:05 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|