Changeset 8552


Ignore:
Timestamp:
06/08/11 12:13:57 (14 years ago)
Author:
Mathieu Morlighem
Message:

fixed printf return missing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/solutions/transient_core.cpp

    r8550 r8552  
    6565
    6666                if(isdiagnostic){
    67                         _printf_(VerboseSolution(),"%s\n","   computing new velocity");
     67                        _printf_(VerboseSolution(),"   computing new velocity\n");
    6868                        diagnostic_core(femmodel);
    6969                }
    7070
    7171                if(isprognostic){
    72                         _printf_(VerboseSolution(),"%s\n","   computing new thickness");
     72                        _printf_(VerboseSolution(),"   computing new thickness\n");
    7373                        prognostic_core(femmodel);
    74                         _printf_(VerboseSolution(),"%s\n","   updating vertices positions");
     74                        _printf_(VerboseSolution(),"   updating vertices positions\n");
    7575                        UpdateVertexPositionsx(femmodel->elements, femmodel->nodes,femmodel->vertices,femmodel->loads, femmodel->materials, femmodel->parameters);
    7676                }
     
    7878                if (gl_migration!=NoneEnum){
    7979                        if(dim==3) _error_("Grounding line migration not implemented in 3d");
    80                         _printf_(VerboseSolution(),"%s\n","   computing new grounding line position");
     80                        _printf_(VerboseSolution(),"   computing new grounding line position\n");
    8181                        GroundingLineMigrationx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters);
    8282                }
    8383
    8484                if(solution_type==TransientSolutionEnum && !control_analysis && (step%output_frequency==0 || time==finaltime)){
    85                         _printf_(VerboseSolution(),"%s\n","   saving results\n");
     85                        _printf_(VerboseSolution(),"   saving results\n");
    8686                        InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum,step,time);
    8787                        InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum,step,time);
     
    9696
    9797                        /*unload results*/
    98                         _printf_(VerboseSolution(),"%s","   saving temporary results");
     98                        _printf_(VerboseSolution(),"   saving temporary results\n");
    9999                        OutputResultsx(femmodel->elements, femmodel->nodes, femmodel->vertices, femmodel->loads, femmodel->materials, femmodel->parameters,&femmodel->results,step,time);
    100100                }
Note: See TracChangeset for help on using the changeset viewer.