Ignore:
Timestamp:
07/11/11 16:41:47 (14 years ago)
Author:
Eric.Larour
Message:

Reorganized io/ directory quite a bit.
Separated Matlab io from the other Disk related io.
Renamed WriteData to WriteMatlabData and FetchData to FetchMatlabData.
Folded WriteParams and FetchParams into FetchMatlabData and WriteMatlabData.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/mex/Solver/Solver.cpp

    r8264 r8910  
    2828       
    2929        /*parameters: */
    30         FetchParams(&parameters,PARAMETERS);
     30        FetchMatlabData(&parameters,PARAMETERS);
    3131
    3232        /*In serial mode, we have no set any petsc options, do it now: */
     
    4343       
    4444                /*Input datasets: */
    45                 FetchData(&Kff,KFF);
    46                 FetchData(&pf,PF);
    47                 FetchData(&uf0,UF0);
    48                 FetchData(&df,DF);
     45                FetchMatlabData(&Kff,KFF);
     46                FetchMatlabData(&pf,PF);
     47                FetchMatlabData(&uf0,UF0);
     48                FetchMatlabData(&df,DF);
    4949
    5050                /*Core module: */
     
    5252
    5353                /*Write output*/
    54                 WriteData(UF,uf);
     54                WriteMatlabData(UF,uf);
    5555        }
    5656        else{
Note: See TracChangeset for help on using the changeset viewer.