| 113 | } // ~DirectMobilitySolver |
| 114 | |
| 115 | void |
| 116 | DirectMobilitySolver::registerMobilityMat(const std::string& mat_name, |
| 117 | const unsigned prototype_struct_id, |
| 118 | MobilityMatrixType mat_type, |
| 119 | std::pair<MobilityMatrixInverseType, MobilityMatrixInverseType> inv_type, |
| 120 | const int managing_proc, |
| 121 | const std::string& filename, |
| 122 | std::pair<double, double> scale) |
| 123 | { |
| 124 | registerMobilityMat(mat_name, |
| 125 | std::vector<unsigned int>(1, prototype_struct_id), |
| 126 | mat_type, |
| 127 | inv_type, |
| 128 | managing_proc, |
| 129 | filename, |
| 130 | scale); |
| 131 | |
| 132 | return; |
| 133 | } // registerMobilityMat |
| 134 | |
| 135 | void |
| 136 | DirectMobilitySolver::registerMobilityMat(const std::string& mat_name, |
no test coverage detected