*/
private void removeCoupling(ICouplingSet couplings, BasicCoupling c) {
try {
couplings.removeCoupling(c);
} catch (NoSuchElementException nsee) {
throw new InvalidModelException("The coupling " + c
+ " cannot be removed from the model " + getFullName()
+ " as it is not existent.", nsee);
}
}