* @return The string as an EPL expression. EPL is the format that
* EncogPrograms are usually persisted as.
*/
public String generateEPL() {
final RenderEPL render = new RenderEPL();
return render.render(this);
}
/**
* @return The program context. The program context may be shared over
* multiple programs.