| 348 | |
| 349 | template <class SCAL> |
| 350 | S_ParallelBaseVectorPtr<SCAL> :: |
| 351 | S_ParallelBaseVectorPtr (int as, int aes, |
| 352 | shared_ptr<ParallelDofs> apd, PARALLEL_STATUS stat) throw() |
| 353 | : S_BaseVectorPtr<SCAL> (as, aes) |
| 354 | { |
| 355 | // recvvalues = NULL; |
| 356 | if ( apd != 0 ) |
| 357 | { |
| 358 | this -> SetParallelDofs ( apd ); |
| 359 | status = stat; |
| 360 | } |
| 361 | else |
| 362 | { |
| 363 | paralleldofs = 0; |
| 364 | status = NOT_PARALLEL; |
| 365 | } |
| 366 | local_vec = make_shared<S_BaseVectorPtr<SCAL>>(as, aes, (void*)pdata); |
| 367 | } |
| 368 | |
| 369 | |
| 370 | template <class SCAL> |
nothing calls this directly
no test coverage detected