| 700 | |
| 701 | |
| 702 | int |
| 703 | Subdomain::computeResidual(void) |
| 704 | { |
| 705 | if (theAnalysis != 0) { |
| 706 | // theTimer.start(); |
| 707 | |
| 708 | int res =0; |
| 709 | res = theAnalysis->formResidual(); |
| 710 | |
| 711 | //theTimer.pause(); |
| 712 | // realCost += theTimer.getReal(); |
| 713 | // cpuCost += theTimer.getCPU(); |
| 714 | // pageCost += theTimer.getNumPageFaults(); |
| 715 | |
| 716 | return res; |
| 717 | |
| 718 | } else { |
| 719 | opserr << "Subdomain::computeResidual() "; |
| 720 | opserr << " - no StaticCondensationAnalysis has been set\n"; |
| 721 | return 0; |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | |
| 726 | const Matrix & |
no test coverage detected