*/
public Variable getDerivedVariable() throws ModelOverdeterminedException {
OverdeterminationValidator odv = new OverdeterminationValidator(
getModel());
if (odv.isOverdetermined()) {
throw new ModelOverdeterminedException();
}
return (Variable) odv.getMatching().get(this);
}