예제 #1
0
void Waterline::run() {
    init_fibers();
    subOp[0]->run(); // these two are independent, so could/should run in parallel
    subOp[1]->run();
    
    xfibers = *( subOp[0]->getFibers() );
    yfibers = *( subOp[1]->getFibers() );
    
    weave_process();
}
예제 #2
0
void AdaptiveWaterline::run() {
    adaptive_sampling_run();
    weave_process(); // in base-class Waterline
}