Changeset 14888


Ignore:
Timestamp:
05/04/13 12:51:45 (12 years ago)
Author:
Eric.Larour
Message:

CHG: Solve method only needed in issm.exe, not the wrappers, don't want to bother with gsl undefined references

Location:
issm/trunk-jpl/src/c/toolkits/issm
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/toolkits/issm/IssmAbsMat.h

    r14834 r14888  
    5656                virtual void SetValues(int m,int* idxm,int n,int* idxn,doubletype* values,InsMode mode)=0;
    5757                virtual void Convert(MatrixType type)=0;
     58                #ifndef _HAVE_WRAPPERS_
    5859                virtual IssmAbsVec<IssmDouble>* Solve(IssmAbsVec<IssmDouble>* pf, Parameters* parameters)=0;
     60                #endif
    5961};
    6062
  • issm/trunk-jpl/src/c/toolkits/issm/IssmDenseMat.h

    r14886 r14888  
    265265                }
    266266                /*}}}*/         
     267                #ifndef _HAVE_WRAPPERS_
    267268                /*Solve{{{*/
    268269                IssmAbsVec<IssmDouble>* Solve(IssmAbsVec<IssmDouble>* pfin, Parameters* parameters){
     
    286287
    287288                }/*}}}*/
    288 
     289                #endif
    289290};
    290291
  • issm/trunk-jpl/src/c/toolkits/issm/IssmMat.h

    r14864 r14888  
    200200                        matrix->convert(type);
    201201                }/*}}}*/
     202                #ifndef _HAVE_WRAPPERS_
    202203                IssmVec<doubletype>* Solve(IssmVec<doubletype>* pf, Parameters* parameters){ /*{{{*/
    203204                       
     
    211212
    212213                }/*}}}*/
    213 
     214                #endif
    214215};
    215216
  • issm/trunk-jpl/src/c/toolkits/issm/IssmMpiDenseMat.h

    r14878 r14888  
    508508                }
    509509                /*}}}*/         
     510                #ifndef _HAVE_WRAPPERS_
    510511                /*Solve{{{*/
    511512                IssmAbsVec<IssmDouble>* Solve(IssmAbsVec<IssmDouble>* pfin, Parameters* parameters){
     
    532533
    533534                }/*}}}*/
     535                #endif
    534536};
    535537
Note: See TracChangeset for help on using the changeset viewer.