| 852 | } |
| 853 | |
| 854 | int |
| 855 | Subdomain::recvSelf(int cTag, Channel &theChannel, |
| 856 | FEM_ObjectBroker &theBroker) |
| 857 | { |
| 858 | int dataTag = this->getDbTag(); |
| 859 | ID data(2); |
| 860 | theChannel.recvID(dataTag, cTag, data); |
| 861 | if (data(1) == 0) { |
| 862 | theAnalysis = theBroker.getNewDomainDecompAnalysis(data(0),*this); |
| 863 | if (theAnalysis != 0) |
| 864 | return theAnalysis->recvSelf(cTag, theChannel,theBroker); |
| 865 | } |
| 866 | return -1; |
| 867 | } |
| 868 | |
| 869 | double |
| 870 | Subdomain::getCost(void) |
nothing calls this directly
no test coverage detected