SubstMap is a substitution backed by a map from variables to constants.
| 156 | |
| 157 | // SubstMap is a substitution backed by a map from variables to constants. |
| 158 | type SubstMap map[Variable]BaseTerm |
| 159 | |
| 160 | // Get implements the Get method from Subst. |
| 161 | func (m SubstMap) Get(v Variable) BaseTerm { |