function final_result
{
result = 5;
output "Draco/Test4/PreLoopResult" = result;
parallel loop 1 to MAXITERS as ID
{
result = result + ID;
//output "Draco/Test4/Iter$ID$/Result" = result;
}
}
|
Your DRACO code is compiled to C# and MSIL which is then bound into an assembly and runs in your application. It can be served using a client/server architecture, integrated into
a web service, or directly into your application. We even provide a secure loading mechanism to ensure that your compiled code is only loaded in a trust environment.