public Variable(string name, IVariableStore store, int exponent) { ID = store.GetOrCreateID(name); Exponent = exponent; }
public Variable(string name, IVariableStore store) { ID = store.GetOrCreateID(name); Exponent = 1; }