Converts a substitution, in the form of a Map from variable names to Terms, to a String. @param varnames_to_Terms A Map from variable names to Terms. @return String A String representation of the variable bindings @deprecated Use Util#subsToString(Map)
(Map<String, Term> varnames_to_Terms)
| 82 | * @deprecated Use {@link Util#subsToString(Map)} |
| 83 | */ |
| 84 | @Deprecated |
| 85 | public static String toString(Map<String, Term> varnames_to_Terms) { |
| 86 | return subsToString(varnames_to_Terms); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Converts a (JPL) list of Name=Var pairs (as yielded by atom_to_term/3) to a Map from Prolog variables |
no test coverage detected