See if an EL is being remapped.
- Parameters
-
| sgkey_in | Original hashed key of the EL. |
| index_in | Original index of the EL. |
| sgkey_out[out] | New hashed key for the EL. |
| index_out[out] | New index for the EL. |
- Returns
- True if there is a remapping; false otherwise.
This version is for the case where the EL index is a size_t. For other index types, the the templated version below is used (which doesn't allow remapping indices).
Definition at line 31 of file ElementLink.cxx.
36{
37 return sg->
tryELRemap (sgkey_in, index_in, sgkey_out, index_out);
38}
virtual bool tryELRemap(sgkey_t sgkey_in, size_t index_in, sgkey_t &sgkey_out, size_t &index_out)
Test to see if the target of an ElementLink has moved.