// This file is automatically generated by DemeterJ. PrintVisitor { {{ protected java.io.PrintWriter out = new java.io.PrintWriter(System.out, true); java.io.PrintWriter get_out() { return out; } void set_out(java.io.PrintWriter new_out) { out = new_out; } PrintVisitor(java.io.PrintWriter out) { set_out(out); } PrintVisitor(java.io.PrintStream out) { set_out(new java.io.PrintWriter(out, true)); } }} finish {{ out.flush(); }} protected void space() {{ if (needSpace) out.print(" "); needSpace = false; }} before -> Clause, body, Atom_CList {{ out.print(":-"); needSpace = false; }} after Clause {{ out.print("."); needSpace = false; }} before -> Atom, context, Term {{ space(); out.print("says"); needSpace = true; }} after -> Atom, context, Term {{ out.print(":"); needSpace = false; }} before -> IdentConstant, ident, Ident {{ out.print("#"); needSpace = false; space(); out.print(source.get_ident()); needSpace = true; }} before -> StringConstant, string, String {{ space(); out.print("\"" + source.get_string() + "\""); needSpace = true; }} before -> VariableName, ident, Ident {{ space(); out.print(source.get_ident()); needSpace = true; }} before -> UIdent, ident, Ident {{ space(); out.print("_"); needSpace = true; space(); out.print(source.get_ident()); needSpace = true; }} before -> Main, s, String {{ space(); out.print("\"" + source.get_s() + "\""); needSpace = true; }} before -> PrintVisitor, indent, int {{ space(); out.print(source.get_indent()); needSpace = true; }} before -> PrintVisitor, needSpace, boolean {{ space(); out.print(source.get_needSpace()); needSpace = true; }} before -> CopyVisitor, copy, Object {{ space(); out.print(source.get_copy()); needSpace = true; }} before -> SubgraphVisitor, is_equal, boolean {{ space(); out.print(source.get_is_equal()); needSpace = true; }} before -> EqualVisitor, is_equal, boolean {{ space(); out.print(source.get_is_equal()); needSpace = true; }} before -> DisplayVisitor, indent, int {{ space(); out.print(source.get_indent()); needSpace = true; }} before -> TraceVisitor, indent, int {{ space(); out.print(source.get_indent()); needSpace = true; }} before -> Term_PCList, first, Nonempty_Term_PCList {{ out.print("("); needSpace = false; }} after -> Term_PCList, first, Nonempty_Term_PCList {{ out.print(")"); needSpace = false; }} before -> Nonempty_Atom_CList, next, Nonempty_Atom_CList {{ out.print(","); needSpace = false; }} before -> Nonempty_Term_PCList, next, Nonempty_Term_PCList {{ out.print(","); needSpace = false; }} }