Changeset 14433
- Timestamp:
- 03/05/13 18:05:51 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/matrix/Vector.h
r13880 r14433 158 158 /*Vector specific routines*/ 159 159 /*FUNCTION Echo{{{*/ 160 void Echo(void){ 160 void Echo(void){_assert_(this); 161 161 162 162 if(type==PetscVecType){ … … 175 175 /*}}}*/ 176 176 /*FUNCTION Assemble{{{*/ 177 void Assemble(void){ 177 void Assemble(void){_assert_(this); 178 178 179 179 if(type==PetscVecType){ … … 192 192 /*}}}*/ 193 193 /*FUNCTION SetValues{{{*/ 194 void SetValues(int ssize, int* list, doubletype* values, InsMode mode){ 195 194 void SetValues(int ssize, int* list, doubletype* values, InsMode mode){ _assert_(this); 196 195 if(type==PetscVecType){ 197 196 #ifdef _HAVE_PETSC_ … … 209 208 /*}}}*/ 210 209 /*FUNCTION SetValue{{{*/ 211 void SetValue(int dof, doubletype value, InsMode mode){ 210 void SetValue(int dof, doubletype value, InsMode mode){_assert_(this); 212 211 213 212 if(type==PetscVecType){ … … 226 225 /*}}}*/ 227 226 /*FUNCTION GetValue{{{*/ 228 void GetValue(doubletype* pvalue,int dof){ 227 void GetValue(doubletype* pvalue,int dof){_assert_(this); 229 228 230 229 if(type==PetscVecType){ … … 243 242 /*}}}*/ 244 243 /*FUNCTION GetSize{{{*/ 245 void GetSize(int* pM){ 244 void GetSize(int* pM){_assert_(this); 246 245 247 246 if(type==PetscVecType){ … … 260 259 /*}}}*/ 261 260 /*FUNCTION IsEmpty{{{*/ 262 bool IsEmpty(void){ 261 bool IsEmpty(void){_assert_(this); 263 262 264 263 int M; … … 273 272 /*}}}*/ 274 273 /*FUNCTION GetLocalSize{{{*/ 275 void GetLocalSize(int* pM){ 274 void GetLocalSize(int* pM){_assert_(this); 276 275 277 276 if(type==PetscVecType){ … … 290 289 /*}}}*/ 291 290 /*FUNCTION Duplicate{{{*/ 292 Vector* Duplicate(void){ 291 Vector* Duplicate(void){_assert_(this); 293 292 294 293 Vector* output=NULL; … … 313 312 /*}}}*/ 314 313 /*FUNCTION Set{{{*/ 315 void Set(doubletype value){ 314 void Set(doubletype value){_assert_(this); 316 315 317 316 if(type==PetscVecType){ … … 330 329 /*}}}*/ 331 330 /*FUNCTION AXPY{{{*/ 332 void AXPY(Vector* X, doubletype a){ 331 void AXPY(Vector* X, doubletype a){_assert_(this); 333 332 334 333 if(type==PetscVecType){ … … 347 346 /*}}}*/ 348 347 /*FUNCTION AYPX{{{*/ 349 void AYPX(Vector* X, doubletype a){ 348 void AYPX(Vector* X, doubletype a){_assert_(this); 350 349 351 350 if(type==PetscVecType){ … … 364 363 /*}}}*/ 365 364 /*FUNCTION ToMPISerial{{{*/ 366 doubletype* ToMPISerial(void){ 365 doubletype* ToMPISerial(void){_assert_(this); 367 366 368 367 doubletype* vec_serial=NULL; … … 385 384 /*}}}*/ 386 385 /*FUNCTION Copy{{{*/ 387 void Copy(Vector* to){ 386 void Copy(Vector* to){_assert_(this); 388 387 389 388 if(type==PetscVecType){ … … 402 401 /*}}}*/ 403 402 /*FUNCTION Norm{{{*/ 404 doubletype Norm(NormMode norm_type){ 403 doubletype Norm(NormMode norm_type){_assert_(this); 405 404 406 405 doubletype norm=0; … … 422 421 /*}}}*/ 423 422 /*FUNCTION Scale{{{*/ 424 void Scale(doubletype scale_factor){ 423 void Scale(doubletype scale_factor){_assert_(this); 425 424 426 425 if(type==PetscVecType){ … … 439 438 /*}}}*/ 440 439 /*FUNCTION Dot{{{*/ 441 doubletype Dot(Vector* vector){ 440 doubletype Dot(Vector* vector){_assert_(this); 442 441 443 442 doubletype dot; … … 459 458 /*}}}*/ 460 459 /*FUNCTION PointwiseDivide{{{*/ 461 void PointwiseDivide(Vector* x,Vector* y){ 460 void PointwiseDivide(Vector* x,Vector* y){_assert_(this); 462 461 463 462 if(type==PetscVecType){
Note:
See TracChangeset
for help on using the changeset viewer.